summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/build.gradle
diff options
context:
space:
mode:
authorPablo Guardiola <guardiola31337@gmail.com>2017-11-01 18:25:52 -0700
committerGitHub <noreply@github.com>2017-11-01 18:25:52 -0700
commit29a94ae939cf1d81017251ec374e3fff703dc4a6 (patch)
tree63ef44754744e76e81e5b849ffd7fd931444c10d /platform/android/MapboxGLAndroidSDK/build.gradle
parentd0d401b007f460337dd9834ce529f34834ee4a60 (diff)
downloadqtlocation-mapboxgl-29a94ae939cf1d81017251ec374e3fff703dc4a6.tar.gz
[android] make location provider optional (#9488) (#10354)
Diffstat (limited to 'platform/android/MapboxGLAndroidSDK/build.gradle')
-rw-r--r--platform/android/MapboxGLAndroidSDK/build.gradle5
1 files changed, 3 insertions, 2 deletions
diff --git a/platform/android/MapboxGLAndroidSDK/build.gradle b/platform/android/MapboxGLAndroidSDK/build.gradle
index 19587d0078..49806780b5 100644
--- a/platform/android/MapboxGLAndroidSDK/build.gradle
+++ b/platform/android/MapboxGLAndroidSDK/build.gradle
@@ -5,8 +5,7 @@ dependencies {
compile rootProject.ext.dep.supportFragmentV4
compile rootProject.ext.dep.timber
compile rootProject.ext.dep.okhttp3
- compile(rootProject.ext.dep.lost) {
- exclude group: 'com.google.guava'
+ provided(rootProject.ext.dep.lost) {
exclude group: 'com.android.support'
}
testCompile rootProject.ext.dep.junit
@@ -22,6 +21,8 @@ dependencies {
transitive = true
exclude group: 'com.android.support'
}
+
+ compile(rootProject.ext.dep.mapboxAndroidCore)
}
android {