Skip to content Skip to sidebar Skip to footer

Android App Not 64 Bit Compliant After Adding 'ndk { Abifilters 'armeabi-v7a','arm64-v8a','x86','x86_64' }'

After following google's documentation about how to make an android app 64 bit compliant here, the android app bundle I've been trying to build still is not 64 bit compliant. The a

Solution 1:

You need x86_64 and armb64-v8a .so files for 64 bit support. You can't build those in Android Studio. This is native libs. The dependencies of the library that you are using must be rebuilt for these processor architectures.


Post a Comment for "Android App Not 64 Bit Compliant After Adding 'ndk { Abifilters 'armeabi-v7a','arm64-v8a','x86','x86_64' }'"