i have try to create android apk in 64 bit using below code.
buildTypes {
release {
ndk {
abiFilters "arm64-v8a", "armeabi-v7a"
}
}
but not work for me.
i have try to create android apk in 64 bit using below code.
buildTypes {
release {
ndk {
abiFilters "arm64-v8a", "armeabi-v7a"
}
}
but not work for me.
Please try this following:
buildTypes
{
release
{
ndk.abiFilters 'armeabi-v7a','arm64-v8a','x86','x86_64'
}
}
Please follow this link and you will have to put .so files for 32/64 bit architecture: https://developer.android.com/distribute/best-practices/develop/64-bit