Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error message while installing App - INSTALL FAILED NO MATCHING ABIS [duplicate]

Tags:

android

adb

I tried to install the app through ADB using terminal, but it fails with the error message like this :

"INSTALL_FAILED_NO_MATCHING_ABIS"

like image 942
Haripal Wagh Avatar asked Jun 18 '15 11:06

Haripal Wagh


People also ask

What does no matching ABIS mean?

INSTALL_FAILED_NO_MATCHING_ABIS is when you are trying to install an app that has native libraries and it doesn't have a native library for your cpu architecture. For example if you compiled an app for armv7 and are trying to install it on an emulator that uses the Intel architecture instead it will not work.

Why is my Android Studio app not installing?

The Android app not installed error can be combated after resetting app permissions. Go to Settings > Apps > Reset App Preferences/Reset Application Permissions. After this, third-party software can be installed on your device.


1 Answers

INSTALL_FAILED_NO_MATCHING_ABIS

When you are trying to install an app that has native libraries and it doesn't have a native library for the cpu architecture that you are installing at.

For example if you have compiled an app for armv7 only and you are trying to install it on an emulator or device that uses the Intel or different architecture it will not install and will throw this error.

The app has no support for the architecture you are installing.

like image 61
Durai Amuthan.H Avatar answered Nov 15 '22 04:11

Durai Amuthan.H