summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/build.gradle
diff options
context:
space:
mode:
authorPablo Guardiola <guardiola31337@gmail.com>2017-11-03 15:39:53 -0700
committerTobrun <tobrun@mapbox.com>2017-11-09 12:43:28 +0100
commitcec7d12e37e61cad8c631a97f4d0a52eeba81a7b (patch)
tree636508ee805181c03e05d1204cf462f770b3a879 /platform/android/MapboxGLAndroidSDK/build.gradle
parenta71756ea8d62cb448963a59e215e1324cfd57d9f (diff)
downloadqtlocation-mapboxgl-cec7d12e37e61cad8c631a97f4d0a52eeba81a7b.tar.gz
[android] revert adding mapbox-android-core dependency (#10354) (#10380)
Diffstat (limited to 'platform/android/MapboxGLAndroidSDK/build.gradle')
-rw-r--r--platform/android/MapboxGLAndroidSDK/build.gradle7
1 files changed, 4 insertions, 3 deletions
diff --git a/platform/android/MapboxGLAndroidSDK/build.gradle b/platform/android/MapboxGLAndroidSDK/build.gradle
index a114e71792..688c632326 100644
--- a/platform/android/MapboxGLAndroidSDK/build.gradle
+++ b/platform/android/MapboxGLAndroidSDK/build.gradle
@@ -6,7 +6,10 @@ dependencies {
compile rootProject.ext.dep.supportDesign
compile rootProject.ext.dep.timber
compile rootProject.ext.dep.okhttp3
- provided rootProject.ext.dep.lost
+ provided(rootProject.ext.dep.lost) {
+ exclude group: 'com.google.guava'
+ exclude group: 'com.android.support'
+ }
testCompile rootProject.ext.dep.junit
testCompile rootProject.ext.dep.mockito
@@ -19,8 +22,6 @@ dependencies {
compile(rootProject.ext.dep.mapboxAndroidTelemetry) {
transitive = true
}
-
- compile(rootProject.ext.dep.mapboxAndroidCore)
}
android {