INSTALL_FAILED_NO_MATCHING_ABIS on GenyMotion

I am trying to install the kik video application on Genymotion andriod 5, but I keep getting this error. can someone tell me how to get around this?

thanks

+6
source share
3 answers

I solved this problem:

  • download "Genymotion-ARM-Translation.zip" (u can make google zip file).
  • run and run my genymotion.
  • Drag the zip file to the genymotion virtual device. Then click OK, following the tips. Lastly, restart ur geymotion and it works for me.

or u can refer to: INSTALL_FAILED_NO_MATCHING_ABIS when installing apk

+6
source

This is really a duplicate of INSTALL_FAILED_NO_MATCHING_ABIS when installing apk

Here's a guide for xda developers to install the ARM Translation package for x86 emulators such as Genymotion / Andy.

Keep in mind that they cannot fully emulate graphics. If installing the application still gives you an error, then you should probably try Bluestacks !

0
source

go to the app file build.gradle and add the split tag like me and your problem will be solved.

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 } } 
0
source

Source: https://habr.com/ru/post/1209577/


All Articles