Use stable build tools + retrolambda

This commit is contained in:
topjohnwu
2017-04-26 19:04:06 +08:00
parent b8ed23efa7
commit 907e01e524
4 changed files with 15 additions and 5 deletions

View File

@@ -1,15 +1,16 @@
apply plugin: 'com.android.application'
apply plugin: 'me.tatarka.retrolambda'
android {
compileSdkVersion 25
buildToolsVersion "26.0.0-rc1"
buildToolsVersion "25.0.3"
defaultConfig {
applicationId "com.topjohnwu.magisk"
minSdkVersion 21
targetSdkVersion 25
versionCode 30
versionName "4.3.2"
versionCode 31
versionName "4.3.3"
ndk {
moduleName 'zipadjust'
abiFilters 'x86', 'x86_64', 'armeabi-v7a', 'arm64-v8a'
@@ -37,6 +38,11 @@ android {
lintOptions {
disable 'MissingTranslation'
}
retrolambda {
javaVersion JavaVersion.VERSION_1_7
defaultMethods false
incremental true
}
}
repositories {
jcenter()