Build multiple APKs
Last updated
Was this helpful?
Was this helpful?
android {
splits {
// Generate one APK per ABI.
abi {
enable true
reset()
include "armeabi-v7a", "arm64-v8a"
// Do not generate a universal APK containing all ABIs.
universalApk false
}
}
}android {
splits {
abi {
isEnable = true
reset()
include("armeabi-v7a", "arm64-v8a")
isUniversalApk = false
}
}
}