Device supports armeabi-v7a, armeabi, but APK only supports arm64-v8a
Device supports armeabi-v7a, armeabi, but APK only supports arm64-v8a | The currently selected variant "debug" uses split APKs, but none of the 1 split apks are compatible with the current device with ABIs "armeabi-v7a, armeabi".
How to Fix Device supports armeabi-v7a, armeabi, but APK only supports arm64-v8a
- From Gradle Scripts choose abi.gradle (Module :app)
- in ndk remove abiFilter "arm64-v8a" then add this code
abiFilters 'armeabi-v7a', 'x86', 'armeabi'
- Sync Project with Gradle Files
- Run the app