diff options
author | Tobrun <tobrun@mapbox.com> | 2017-05-08 17:30:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-08 17:30:15 +0200 |
commit | b622aed3490d623a31ec576aefe9696f221ead76 (patch) | |
tree | 2f0d1f213d88d2762391ed9f14407be2e9f416ca | |
parent | 45545e15fc41d5beb98612736ee624272b192096 (diff) | |
download | qtlocation-mapboxgl-b622aed3490d623a31ec576aefe9696f221ead76.tar.gz |
[android] - bump android support library, fixup SDK gradle dependencies to use the ones defined in root project. (#8921)
-rw-r--r-- | platform/android/MapboxGLAndroidSDK/build.gradle | 6 | ||||
-rw-r--r-- | platform/android/dependencies.gradle | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/platform/android/MapboxGLAndroidSDK/build.gradle b/platform/android/MapboxGLAndroidSDK/build.gradle index d3396d7eb5..1156a6ef43 100644 --- a/platform/android/MapboxGLAndroidSDK/build.gradle +++ b/platform/android/MapboxGLAndroidSDK/build.gradle @@ -1,9 +1,9 @@ apply plugin: 'com.android.library' dependencies { - compile "com.android.support:support-annotations:${supportLibVersion}" - compile "com.android.support:support-v4:${supportLibVersion}" - compile "com.android.support:design:${supportLibVersion}" + compile rootProject.ext.dep.supportAnnotations + compile rootProject.ext.dep.supportV4 + compile rootProject.ext.dep.supportDesign compile rootProject.ext.dep.timber compile rootProject.ext.dep.okhttp3 compile rootProject.ext.dep.lost diff --git a/platform/android/dependencies.gradle b/platform/android/dependencies.gradle index 587705c609..738f571c09 100644 --- a/platform/android/dependencies.gradle +++ b/platform/android/dependencies.gradle @@ -7,7 +7,7 @@ ext { versionCode = 11 versionName = "5.0.0" - supportLibVersion = "25.2.0" + supportLibVersion = "25.3.1" leakCanaryVersion = '1.5' wearableVersion = '2.0.0' |