sitelink1 http://androidlad.blogspot.com/2016/10/i...-when.html 
sitelink2  
sitelink3  

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

 

 

image3.png

 

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. 

Technorati Tags: ,,,

 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 Insideandroid{} 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.

번호 제목 글쓴이 날짜 조회 수
58 svn: E175002: connection refused by the server 황제낙엽 2019.06.21 3845
57 script validation error 황제낙엽 2019.06.11 86
56 svn:ignore 추가 방법 file 황제낙엽 2018.04.13 239
55 Java was started but returned exit code=13 file 황제낙엽 2018.03.25 201
54 인텔리J 활용꿀팁 42가지 file 황제낙엽 2018.03.04 153
53 Eclipse TODO 사용법 / Task Tags 사용법 황제낙엽 2018.01.23 1923
52 workspace 자동 refresh 황제낙엽 2017.07.09 319
51 Eclipse Javadoc 의 Author 설정하기 file 황제낙엽 2017.06.05 389
50 Could not find com.android.support.constraint:constraint-layout 오류 file 황제낙엽 2017.04.24 183
» INSTALL_FAILED_NO_MATCHING_ABIS WHEN INSTALL APK ? file 황제낙엽 2017.03.28 11539
48 "탭(tab) 1" to "스페이스(space) 4" 로 변경 황제낙엽 2017.01.20 224
47 The ObjectAid UML Explorer for Eclipse (Reverse Engineering) 황제낙엽 2016.12.08 524
46 [Android Studio] Error:Execution failed for task ':app:compileDebugJavaWithJavac'. 황제낙엽 2016.08.18 582
45 [Android Studio] Unsupported major.minor version 52.0 황제낙엽 2016.08.18 1200
44 255자 넘는 경로명을 가진 파일/디렉토리 강제 삭제하기 file 황제낙엽 2015.11.21 252
43 eclipse에서 정규식 테스트 할수 있는 플러그인 file 황제낙엽 2010.03.10 63
42 Setting property 'source' to 'org.eclipse.jst.jee.server:board' did not find a matching property. 황제낙엽 2013.04.11 448
41 [Eclipse] Eclipse Market Place 사용하여 SVN 설치 file 황제낙엽 2013.03.02 46
40 이클립스 SVN(Subversion) 설치 및 연결 file 황제낙엽 2013.02.22 88
39 Toggle Mark Occurrences 기능을 지원하는 Javascript Editor Plugin (Spket IDE) 황제낙엽 2010.09.29 121