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
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
I solved this problem by:
or u can refer the:INSTALL_FAILED_NO_MATCHING_ABIS when install apk
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!
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
}
}