Skip to content

Instantly share code, notes, and snippets.

@inix
Forked from ph0b/build.gradle
Created March 9, 2016 03:29
Show Gist options
  • Save inix/7495453f102b9689e79c to your computer and use it in GitHub Desktop.
Save inix/7495453f102b9689e79c to your computer and use it in GitHub Desktop.
sample build.gradle for generating split APKs per ABI
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig{
minSdkVersion 14
targetSdkVersion 21
versionCode 101
versionName "1.0.1"
}
splits {
abi {
enable true
reset()
include 'x86', 'x86_64', 'armeabi-v7a', 'arm64-v8a' //select ABIs to build APKs for
universalApk true //generate an additional APK that contains all the ABIs
}
}
// map for the version code
project.ext.versionCodes = ['armeabi': 1, 'armeabi-v7a': 2, 'arm64-v8a': 3, 'mips': 5, 'mips64': 6, 'x86': 8, 'x86_64': 9]
android.applicationVariants.all { variant ->
// assign different version code for each output
variant.outputs.each { output ->
output.versionCodeOverride =
project.ext.versionCodes.get(output.getFilter(com.android.build.OutputFile.ABI), 0) * 1000000 + android.defaultConfig.versionCode
}
}
}
@inix
Copy link
Author

inix commented Mar 9, 2016

splits abi arm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment