I am using some external dependencies in my app, those apps have some .so
files but those .so
files are not available for x86_64
.
So play store does not upload apk and give following error message.
This release is not compliant with the Google Play 64-bit requirement
So i split apk and created following apks.
splits {
abi {
enable true
reset()
include 'armeabi-v7a','arm64-v8a'
universalApk false
}
}
If i upload these 2 apks, play store successfully uploads the apk.
Now my question is that is it fine to not upload x86 apk.