BuildTools = 26.0.2

This commit is contained in:
Alexey Kulish 2017-10-26 14:50:35 +03:00
parent b5b0f59411
commit f2933e3b36
2 changed files with 11 additions and 3 deletions

View file

@ -18,7 +18,7 @@ apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "26.0.1"
buildToolsVersion "26.0.2"
signingConfigs {
development {

View file

@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "26.0.1"
buildToolsVersion "26.0.2"
dexOptions {
jumboMode true
@ -38,28 +38,36 @@ android {
}
}
flavorDimensions "abi"
productFlavors {
x86 {
dimension "abi"
ndk {
abiFilter "x86"
}
}
mips {
dimension "abi"
ndk {
abiFilter "mips"
}
}
armv7 {
dimension "abi"
ndk {
abiFilter "armeabi-v7a"
}
}
armv5 {
dimension "abi"
ndk {
abiFilter "armeabi"
}
}
fat
fat {
dimension "abi"
}
}
buildTypes {