summaryrefslogtreecommitdiff
path: root/platform
diff options
context:
space:
mode:
authorTobrun <tobrun@mapbox.com>2017-05-08 17:30:15 +0200
committerGitHub <noreply@github.com>2017-05-08 17:30:15 +0200
commitb622aed3490d623a31ec576aefe9696f221ead76 (patch)
tree2f0d1f213d88d2762391ed9f14407be2e9f416ca /platform
parent45545e15fc41d5beb98612736ee624272b192096 (diff)
downloadqtlocation-mapboxgl-b622aed3490d623a31ec576aefe9696f221ead76.tar.gz
[android] - bump android support library, fixup SDK gradle dependencies to use the ones defined in root project. (#8921)
Diffstat (limited to 'platform')
-rw-r--r--platform/android/MapboxGLAndroidSDK/build.gradle6
-rw-r--r--platform/android/dependencies.gradle2
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'