use gradle android plugin v2.2.2

Starting with v2.2.2, it zeroes out timestamps in the APK's ZIP header
https://android-developers.googleblog.com/2016/11/understanding-apk-packaging-in-android-studio-2-2.html

This version is also the version that is included in Debian/stretch.
This commit is contained in:
Hans-Christoph Steiner 2017-04-28 13:15:27 +10:00
parent e02c0cb555
commit 1f8330fd06
2 changed files with 4 additions and 2 deletions

View File

@ -3,7 +3,8 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.0'
// 2.2.2 is the version that is included in Debian/stretch
classpath 'com.android.tools.build:gradle:2.2.2'
classpath files('libs/gradle-witness.jar')
}
}

View File

@ -4,7 +4,8 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:0.10.+'
// 2.2.2 is the version that is included in Debian/stretch
classpath 'com.android.tools.build:gradle:2.2.2'
}
}