diff options
author | Brad Leege <bleege@gmail.com> | 2016-04-27 16:54:14 -0500 |
---|---|---|
committer | Brad Leege <bleege@gmail.com> | 2016-04-27 16:54:14 -0500 |
commit | fbf398f10d3caa69c5b60f84670107fae1e0b63d (patch) | |
tree | c31f960487f5edc72e6e5758e2c66d796b2b86f0 | |
parent | c6420b1549d9d9d65fa39ed2f456ff15c1093cc8 (diff) | |
download | qtlocation-mapboxgl-fbf398f10d3caa69c5b60f84670107fae1e0b63d.tar.gz |
[android] #4112 - Updating build tools, support libraries, gradle tools, and test app version
-rw-r--r-- | platform/android/MapboxGLAndroidSDK/build.gradle | 2 | ||||
-rw-r--r-- | platform/android/MapboxGLAndroidSDK/gradle.properties | 2 | ||||
-rw-r--r-- | platform/android/MapboxGLAndroidSDKTestApp/build.gradle | 8 | ||||
-rw-r--r-- | platform/android/build.gradle | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/platform/android/MapboxGLAndroidSDK/build.gradle b/platform/android/MapboxGLAndroidSDK/build.gradle index cc06995df6..a0492c21af 100644 --- a/platform/android/MapboxGLAndroidSDK/build.gradle +++ b/platform/android/MapboxGLAndroidSDK/build.gradle @@ -18,7 +18,7 @@ repositories { } ext { - supportLibVersion = '23.1.1' + supportLibVersion = '23.3.0' } dependencies { diff --git a/platform/android/MapboxGLAndroidSDK/gradle.properties b/platform/android/MapboxGLAndroidSDK/gradle.properties index 56cb4324fb..c2df63b0bb 100644 --- a/platform/android/MapboxGLAndroidSDK/gradle.properties +++ b/platform/android/MapboxGLAndroidSDK/gradle.properties @@ -14,7 +14,7 @@ POM_DEVELOPER_NAME=Mapbox ANDROID_MIN_SDK=15 ANDROID_BUILD_TARGET_SDK_VERSION=23 -ANDROID_BUILD_TOOLS_VERSION=23.0.2 +ANDROID_BUILD_TOOLS_VERSION=23.0.3 ANDROID_BUILD_SDK_VERSION=23 POM_NAME=Mapbox GL Android SDK diff --git a/platform/android/MapboxGLAndroidSDKTestApp/build.gradle b/platform/android/MapboxGLAndroidSDKTestApp/build.gradle index 5503179eb6..b3df5fabf8 100644 --- a/platform/android/MapboxGLAndroidSDKTestApp/build.gradle +++ b/platform/android/MapboxGLAndroidSDKTestApp/build.gradle @@ -22,19 +22,19 @@ gradle.projectsEvaluated { } ext { - supportLibVersion = '23.1.1' + supportLibVersion = '23.3.0' } android { compileSdkVersion 23 - buildToolsVersion "23.0.2" + buildToolsVersion "23.0.3" defaultConfig { applicationId "com.mapbox.mapboxsdk.testapp" minSdkVersion 15 targetSdkVersion 23 - versionCode 8 - versionName "4.0.0" + versionCode 9 + versionName "4.1.0" // Specify AndroidJUnitRunner as the default test instrumentation runner testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" diff --git a/platform/android/build.gradle b/platform/android/build.gradle index 32f04e108a..23aef9d1e6 100644 --- a/platform/android/build.gradle +++ b/platform/android/build.gradle @@ -7,7 +7,7 @@ buildscript { maven { url 'https://jitpack.io' } } dependencies { - classpath 'com.android.tools.build:gradle:2.0.0' + classpath 'com.android.tools.build:gradle:2.1.0' classpath 'com.github.JakeWharton:sdk-manager-plugin:220bf7a88a7072df3ed16dc8466fb144f2817070' // NOTE: Do not place your application dependencies here; they belong |