Update Android and Gradle plugin versions

This commit is contained in:
Emux
2016-10-21 20:08:17 +03:00
parent ccdea3b663
commit 062bb8d573
2 changed files with 5 additions and 6 deletions

View File

@@ -6,9 +6,8 @@ android:
components:
- platform-tools
- tools
- build-tools-24.0.3
- android-24
- extra-android-m2repository
- build-tools-25.0.0
- android-25
env:
global:
- GRADLE_OPTS="-Xmx2048m"

View File

@@ -3,7 +3,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.1'
classpath 'com.android.tools.build:gradle:2.2.2'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
}
}
@@ -13,7 +13,7 @@ allprojects {
version = 'master-SNAPSHOT'
ext.isReleaseVersion = !version.endsWith("SNAPSHOT")
ext.androidBuildVersionTools = "24.0.3"
ext.androidBuildVersionTools = "25.0.0"
ext.gdxVersion = "1.9.4"
if (JavaVersion.current().isJava8Compatible()) {
@@ -25,7 +25,7 @@ allprojects {
}
}
def androidCompileSdk() { return 24 }
def androidCompileSdk() { return 25 }
def androidMinSdk() { return 10 }