Bump build-tools to 22.0.0

This commit is contained in:
Daniel Martí 2015-03-11 23:09:42 +01:00
parent 186c1fecea
commit 6eff521459
2 changed files with 4 additions and 4 deletions

View File

@ -127,7 +127,7 @@ task binaryDeps(type: Copy, dependsOn: ':F-Droid:prepareReleaseDependencies') {
android {
compileSdkVersion 21
buildToolsVersion '21.1.2'
buildToolsVersion '22.0.0'
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7

View File

@ -39,7 +39,7 @@ project(':extern:UniversalImageLoader:library') {
android {
compileSdkVersion 16
buildToolsVersion '21.1.2'
buildToolsVersion '22.0.0'
sourceSets {
main {
@ -82,8 +82,8 @@ subprojects {
// android plugin will re-use the existing value I set.
// https://android.googlesource.com/platform/tools/build/+/master/gradle/src/main/groovy/com/android/build/gradle/BaseExtension.groovy
try {
buildToolsVersion '21.1.2'
logger.info("Set buildToolsVersion to '21.1.2'")
buildToolsVersion '22.0.0'
logger.info("Set buildToolsVersion to '22.0.0'")
} catch (GradleException e) {
logger.info("Tried to set the buildToolsVersion, however we were not allowed to: $e.message")
}