ac4android
Well-Known Member
Hi, I am working through some gradles and found they fail on some CPU architecture.
On closer look, the gradle use this:
Why specify the CPU in the "include" and a universalApk on top?
If you want all the architecture in the APK,, wouldn't "universalApk true" be enough?
On closer look, the gradle use this:
Code:
splits{
abi {
enable true
reset()
include 'armeabi', 'armeabi-v7a'
universalApk true
}
}
Why specify the CPU in the "include" and a universalApk on top?
If you want all the architecture in the APK,, wouldn't "universalApk true" be enough?