7

Im trying to install video kik app on Genymotion andriod 5 but i keep getting this error. can someone tell me how to get around that?

Thanks

SuperMan
  • 71
  • 1
  • 1
  • 2
  • 2
    possible duplicate of [INSTALL\_FAILED\_NO\_MATCHING\_ABIS when install apk](http://stackoverflow.com/questions/24572052/install-failed-no-matching-abis-when-install-apk) – jyoonPro Dec 19 '14 at 22:21
  • 1
    see this answer here http://stackoverflow.com/questions/24572052/install-failed-no-matching-abis-when-install-apk – niyanshi May 08 '15 at 01:58

3 Answers3

8

I solved this problem by:

  1. downloading "Genymotion-ARM-Translation.zip"(u can google the zip file).
  2. start and run my genymotion.
  3. Drag the zip file to the genymotion virtual device,Then click 'ok' button by Following the tips.Finally restart ur genymotion and it works for me.

or u can refer the:INSTALL_FAILED_NO_MATCHING_ABIS when install apk

Community
  • 1
  • 1
hijack
  • 381
  • 3
  • 11
0

It is indeed a duplicate of INSTALL_FAILED_NO_MATCHING_ABIS when install apk

Here's the guide on xda-developers on installing ARM Translation package for x86 emulators like Genymotion/Andy.

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

Community
  • 1
  • 1
Sai
  • 711
  • 6
  • 24
0

go to app build.gradle file and add split tag like i did 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
    }
}
mehmoodnisar125
  • 1,469
  • 18
  • 14