Android Errors

INSTALL_FAILED_NO_MATCHING_ABIS

The APK does not support the device CPU architecture.

Error · Android Errors

Meaning

Android could not find a compatible native library for the device ABI.

Causes

  • APK built without required ABI (arm64-v8a, x86, etc.)
  • Device uses an unsupported architecture
  • Split APKs missing the required ABI split

Fixes

  • Build and publish APKs for the required ABIs
  • Install the correct ABI split
  • Use a universal APK if size permits

Example

INSTALL_FAILED_NO_MATCHING_ABIS

FAQ

  • Is this a device issue?
    It is an APK compatibility issue with the device ABI.
  • Will a universal APK fix it?
    Often yes, if it includes the needed ABI.

Contact

If you are a user, contact the app publisher for a compatible build.