Build tools rev 20, gradle plugin 0.12.+

pull/189/head
Alex Baker 10 years ago
parent 570fe11d17
commit 855b913855

@ -5,7 +5,7 @@ env:
- ANDROID_SDKS=android-19,sysimg-19 ANDROID_TARGET=android-19 ANDROID_ABI=armeabi-v7a
android:
components:
- build-tools-19.1.0
- build-tools-20
before_install:
- echo no | android create avd --force -n test -t $ANDROID_TARGET --abi $ANDROID_ABI

@ -3,11 +3,11 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.11.+'
classpath 'com.android.tools.build:gradle:0.12.+'
}
}
apply plugin: 'android-library'
apply plugin: 'com.android.library'
repositories {
mavenCentral()
@ -18,7 +18,7 @@ android {
lintConfig file("../lint.xml")
}
compileSdkVersion 19
buildToolsVersion "19.1"
buildToolsVersion "20"
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7

@ -3,11 +3,11 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.11.+'
classpath 'com.android.tools.build:gradle:0.12.+'
}
}
apply plugin: 'android'
apply plugin: 'com.android.application'
repositories {
mavenCentral()
@ -19,7 +19,7 @@ android {
}
compileSdkVersion 19
buildToolsVersion "19.1"
buildToolsVersion "20"
defaultConfig {
minSdkVersion 7

Loading…
Cancel
Save