This commit is contained in:
Alexey Kuznetsov 2018-05-14 16:59:06 +03:00
commit e4fa50e9fd
2 changed files with 9 additions and 6 deletions

View file

@ -42,12 +42,15 @@ android {
output.outputFileName = org.apache.commons.io.FilenameUtils.getExtension(android.defaultConfig.applicationId) + "-" + abi + "-" + android.defaultConfig.versionName + "-" + variant.buildType.name + ".apk"
}
}
splits {
bundle {
language {
enableSplit = false
}
density {
enableSplit = true
}
abi {
enable true
reset()
include "x86", "x86_64", "armeabi-v7a", "arm64-v8a", "mips", "mips64"
universalApk true
enableSplit = true
}
}
}

View file

@ -6,7 +6,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
classpath 'com.android.tools.build:gradle:3.2.0-alpha14'
}
}