INSTALL_FAILED_NO_MATCHING_ABIS when install apk ?

Sometime when we install apk in Genymotion or Android Emulator this error comes and apk fail to install in vertual device. Also we get following error in trace
$ adb shell pm install -r "/data/local/tmp/com.instamasti"
Failure [INSTALL_FAILED_NO_MATCHING_ABIS: Failed to extract native libraries, res=-113]
$ adb shell pm uninstall com.instamasti
DELETE_FAILED_INTERNAL_ERROR
Error while Installing APK
Error Dialog


Cause of this issue
  This problem also come with when working with unity also. The problem is your app uses ARM architecture and the device or emulator that you are trying to install the app support otherwise such as x86. Try installing it on ARM emulator. Hope that solves the problem.
Solution For this issue
There could be 2 solutionn for this problem.
Solution 1:
If you are working on NDK and you creating binary file then
In your application.mk, try to add x86 at
APP_ABI := armeabi-v7a
and it should be look like this
APP_ABI := armeabi-v7a x86
Solution 2:
When you are using third party library or you have binary file then you need to add extra line in you build.gradle
I was able to use the x86 Accelerated (HAXM) emulator by simply adding this to my Module's build.gradle script Inside android{} block:
android { compileSdkVersion 23 buildToolsVersion "23.0.2" defaultConfig { applicationId "com.appname" minSdkVersion 16 targetSdkVersion 23 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } splits { abi { enable true reset() include 'x86', 'armeabi-v7a' universalApk true } }
Please comment below for any query and also please appreciate if you feel helpful.

Source

Previous
Next Post »

53 comments

Click here for comments
Em man
admin
6 November 2016 at 02:53 ×

Thanks it works as expected

Reply
avatar
naitik patel
admin
23 February 2017 at 02:08 ×

Is still not working.....

Reply
avatar
Unknown
admin
26 February 2017 at 07:43 ×

What issue are you facing? Please explain me more.

Reply
avatar
Cole
admin
20 March 2017 at 20:58 ×

I'm rather clueless about code however the client I'm working for has a task including such as you described; so my question to you is: where in the hell do I even go to go about setting up such a task?? I'm somewhat versed in the ways of Android Studio however I am chiefly working with the emulate function so the rest of the [evidently highly capable] app builder is somewhat of a mystery to me. Any help with my ineptitude is highly appreciated! (especially that in a timely manner) Cheers!

Reply
avatar
Unknown
admin
23 March 2017 at 02:51 ×


I will be happy to help if you can elaborate more about your requirement or issues.
By the way this code you need to paste in module gradle. this will break your app for different ABIS.

Thanks
Cheer

Reply
avatar
TomPerys
admin
7 April 2017 at 11:38 ×

Hi, I have problems with installing existing app. I downloaded several versions of Opera mini apk files and trying to install them to virtual device with Android 5.1 or 6 but I have always taht error "Failure [INSTALL_FAILED_NO_MATCHING_ABIS]". I tried to install different images in SDK Platforms tab (x86, v7a) but still nothing. I dont know if you have to choose somewhere on whichimage the virtual device will work?? But anyway the app should work I think for any of them.

My goal is just to have Opera aplication in the virtual device so I can test web pages in different browsers on different android versions.

Reply
avatar
Unknown
admin
19 April 2017 at 03:08 ×

it will work on armiabi type of devices. You can find out in Kitkat emulator.

Reply
avatar
TomPerys
admin
19 April 2017 at 03:19 ×

Sorry i dont know what you mean wxactly, can you explain it in more detail? Do I need to find whole different emulator? I need this for android 5.1, android 6 and android 7 (i dont want to test the old 4.4 kitkat android).

Reply
avatar
Arun
admin
24 January 2018 at 11:30 ×

Hi admin
Thanks for sharing this amazing article and i think you know about lucky patcher alternative and i think it works like a charm. Please post more article like this and i will visit here again.

Reply
avatar
Anonymous
admin
21 February 2018 at 04:35 ×

After I included a third party AAR file, this error came up but I tried your solution 2 and it solved my problem. I was using x86 based Nexus 5 virtual device on emulator. I included that splits block in build.gradle and yes it is :) thanks

Reply
avatar
Unknown
admin
14 April 2018 at 10:03 ×

Thanks for sharing this amazing article and i think you know about lucky patcher by chelpus and i think it works like a charm. Please post like this article

Reply
avatar
Unknown
admin
26 April 2018 at 12:39 ×

2nd Option worked with OpenCV, Thanks!

Reply
avatar
lucky patcher alternatives
admin
8 May 2018 at 02:52 ×

Found Interesting and wonderfull keep sharing
official website

Reply
avatar
Unknown
admin
2 July 2018 at 10:01 ×

hi then. I already put your code but it still not working, please help me.
Please show me your email and I will send you my error.

Reply
avatar
Unknown
admin
2 July 2018 at 10:02 ×

Sorry. My email is ng.huuquang101088@gmail.com

Still waiting for your reply.

Thanks

Reply
avatar
Max
admin
9 October 2018 at 11:00 ×

This is the right blog for anyone who wants to find out about this topic. You realize so much its almost hard to argue with you (not that I actually would want? Ha-ha). You definitely put a new spin on a topic that’s been written about for years. Great stuff, just great!
game guardian free apk

Reply
avatar
Unknown
admin
5 December 2018 at 15:32 ×

Hi there! Someone in my Myspace group shared this site with us so I came to give it a look. I’m definitely loving the information. I’m bookmarking and will be tweeting this to my followers! Outstanding blog and wonderful style and design. utorrent pro apk 2018

Reply
avatar
Anonymous
admin
22 January 2019 at 01:05 ×

Will it generate multiple APK's ?

Reply
avatar
Jim
admin
22 January 2019 at 01:10 ×

After adding this are we able to run the APK in all devices ? x86 or ARM ?

Reply
avatar
Unknown
admin
22 January 2019 at 01:28 ×

Yes, this will generate multiple APK for different chip set (CPU ABI)

Reply
avatar
Anonymous
admin
6 November 2019 at 18:07 ×

but my .apk doesnt have a build.gradle module?

Reply
avatar
22 March 2020 at 22:37 ×

Some of code was unable to parse, please revise the line 133 in $syntax, thank you.

Reply
avatar
Tech News
admin
28 March 2020 at 12:05 ×

I am still facing the issue that INSTALL_FAILED_NO_MATCHING_ABIS after putting that code in the gradle can you plz help me with this

Reply
avatar
Anonymous
admin
30 May 2020 at 13:41 ×

Your solution worked for me, many thanks for your help :-)

Reply
avatar
16 June 2020 at 08:05 ×

I am trying to include Microsoft SignalR libraries and then this issue happens and the only solution available on internet which is this, does not work for me. Any help is greatly appreciated. Thanks in advance.

Reply
avatar
27 August 2020 at 10:24 ×

Vidmate video download, Vidmate android app , Vidmate apk application, Vidmate for android, Vidmate free video download,

Reply
avatar
Unknown
admin
1 December 2020 at 13:07 ×

Wow Nice post admin thanks for sharing Vivo Y12 Latest Flash file

Reply
avatar
Malik Nouman
admin
2 September 2021 at 23:34 ×

By browsing around a bit, you should be able to locate a store that sells gaming equipment that is best suited for your television.
5 Innovative Ways To Stream Games To Your TV

Reply
avatar
Malik Nouman
admin
8 September 2021 at 03:58 ×

If none of these options works for you, then it may be best to lower your graphics card and laptop processors speeds. You can also increase the RAM and increase the refresh rate of your display
Screen Tearing

Reply
avatar
Malik Nouman
admin
23 September 2021 at 00:08 ×

Thank you for sharing such a useful information.
How to

Reply
avatar
Malik Nouman
admin
8 October 2021 at 02:52 ×

I like your all post. You have done really good work. Thank you for the information you provide, it helped me a lot. I hope to have many more entries or so from you.
Very interesting blog.
https://www.articleblock.com/carpet-tiles-best-source-for-flooring-ideas/

Reply
avatar
sheikhali
admin
23 November 2021 at 22:10 ×

I'm completely clueless when it comes to coding, but the client for whom I'm working has a task that includes something like what you described; therefore, my question to you is: where in the hell do I even begin to set up a task like that?? Despite the fact that I am somewhat familiar with the workings of Android Studio, I have been primarily working with the emulate function, and as such, the rest of the [clearly extremely capable] app builder is a bit of a mystery to me. Any assistance with my incompetence would be greatly appreciated! (particularly if it is done in a timely manner) Cheers!..
vaporvm

Reply
avatar
Malik Nouman
admin
26 November 2021 at 02:50 ×

Great work with the hard work you have done I appreciate your work thanks for sharing it.
https://fragnewz.com/the-benefits-of-outdoor-carpet-for-homes-and-commercial-properties-in-dubai/

Reply
avatar
2 March 2022 at 05:03 ×

A very awesome blog post. We are really grateful for your blog post. You will find a lot of approaches after visiting your post. I was exactly searching for. Thanks for such post and please keep it up. Great work rent coworking space

Reply
avatar
Anonymous
admin
12 March 2022 at 20:59 ×

Install_Failed_No_Matching_Abis When Install Apk ? ~ Android Lad Ohm >>>>> Download Now

>>>>> Download Full

Install_Failed_No_Matching_Abis When Install Apk ? ~ Android Lad Ohm >>>>> Download LINK

>>>>> Download Now

Install_Failed_No_Matching_Abis When Install Apk ? ~ Android Lad Ohm >>>>> Download Full

>>>>> Download LINK

Reply
avatar
Mr Nath
admin
24 November 2022 at 23:10 ×

https://androidlad.blogspot.com/2016/10/installfailednomatchingabis-when.html

Reply
avatar