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.

번호 제목 글쓴이 날짜 조회 수
» INSTALL_FAILED_NO_MATCHING_ABIS WHEN INSTALL APK ? file 황제낙엽 2017.03.28 12011
79 svn: E175002: connection refused by the server 황제낙엽 2019.06.21 4655
78 리팩토링 (Refactoring) 사용하기 황제낙엽 2007.07.27 2978
77 Eclipse TODO 사용법 / Task Tags 사용법 황제낙엽 2018.01.23 2229
76 [Android Studio] Unsupported major.minor version 52.0 황제낙엽 2016.08.18 1390
75 IntelliJ 의 ultimate(상용) 와 community(무료) 버전의 차이 file 황제낙엽 2023.11.01 1218
74 STS (Eclipse)에서 Language Server 동작 비활성화 하기 file 황제낙엽 2023.12.28 1108
73 remote desktop 에서 vscode 로 작업시 키입력이 되지 않을때 (from bing) 황제낙엽 2023.07.25 1092
72 The ObjectAid UML Explorer for Eclipse (Reverse Engineering) 황제낙엽 2016.12.08 931
71 [Android Studio] Error:Execution failed for task ':app:compileDebugJavaWithJavac'. 황제낙엽 2016.08.18 793
70 Setting property 'source' to 'org.eclipse.jst.jee.server:board' did not find a matching property. 황제낙엽 2013.04.11 764
69 Eclipse 인터페이스는 영문, 도움말은 한글로 보기 황제낙엽 2007.03.07 697
68 Eclipse Javadoc 의 Author 설정하기 file 황제낙엽 2017.06.05 632
67 workspace 자동 refresh 황제낙엽 2017.07.09 559
66 svn:ignore 추가 방법 file 황제낙엽 2018.04.13 519
65 255자 넘는 경로명을 가진 파일/디렉토리 강제 삭제하기 file 황제낙엽 2015.11.21 518
64 APK파일 생성 (명령줄에서 앱 빌드) 황제낙엽 2019.10.08 509
63 이클립스 다국어 설정 (UTF-8) file 황제낙엽 2006.09.20 480
62 java.net과 이클립스를 이용한 오픈소스 자바 어플리케이션 개발 (1부. 이클립스에서 새로운 프로젝트 생성하기) file 황제낙엽 2007.02.28 477
61 Analyze APK 황제낙엽 2019.10.08 472