Skip to content

Instantly share code, notes, and snippets.

@gogeta95
Last active September 23, 2016 20:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gogeta95/528bf0fca9d7b306e82a47c5d355c4c8 to your computer and use it in GitHub Desktop.
Save gogeta95/528bf0fca9d7b306e82a47c5d355c4c8 to your computer and use it in GitHub Desktop.
Gist to enable APK splits based on ABI.
android {
//.........
defaultConfig {
//........
splits {
abi {
enable true
reset()
include 'x86_64', 'x86', 'armeabi', 'armeabi-v7a', 'arm64-v8a', 'mips'
universalApk false
}
}
// ....
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment