Device supports armeabi-v7a, armeabi, but APK only supports arm64-v8a

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

  1. From Gradle Scripts choose abi.gradle (Module :app)
  2. in ndk remove abiFilter "arm64-v8a" then add this code
    abiFilters 'armeabi-v7a', 'x86', 'armeabi'
  3. Sync Project with Gradle Files
  4. Run the app