Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Install app on genymotion device ,meet:“INSTALL_FAILED_CPU_ABI_INCOMPATIBLE”

When I install my app on a genymotion simulater device,it can not be installed well,on console I got "INSTALL_FAILED_CPU_ABI_INCOMPATIBLE" I trid another app,it installed fine.I do not know why.

like image 610
topxebec Avatar asked Dec 06 '13 04:12

topxebec


3 Answers

The application (certainly a game) must be ARM only. Genymotion is a x86 platform, so compile the application to target x86.

You may be able to install ARM support manually : http://forum.xda-developers.com/showthread.php?t=2528952

like image 181
slvn Avatar answered Nov 01 '22 17:11

slvn


If you are using IntelliJ it may be related to the project's default configuration. IntelliJ will assume, unless otherwise specified, that Native libraries will be stored in the Libs folder. This is usually where developer store their JAR libraries. IntelliJ build process will package up the JAR file into the Native file folder in the APK.

If you experiencing this problem, you can find a good How-to:

INSTALL_FAILED_CPU_ABI_INCOMPATIBLE Intellj

This helped to resolve the issue I had.

like image 45
hylander0 Avatar answered Nov 01 '22 19:11

hylander0


You might want to check out my answer here:

INSTALL_FAILED_CPU_ABI_INCOMPATIBLE on device using intellij

I know it's written for IntelliJ, but you could be running into a similar issue with Eclipse where it thinks that some normal Java files or jar libraries are native code and including it in the compiled APK. A quick way to find out is to open up the final APK (it's just a jar file, so most utilities should be able to decompress it) and make sure that the only things you see are META-INF, res, AndroidManifest.xml, classes.dex, and resources.arsc. It's possible that there are other valid files in a normal Java Android application, but in general if you see anything else in there, particularly a libs folder, it's probably the result of the compilation process thinking that those other things are native libraries (compiled C/C++ code using the JNI).

If this is the case, you'll need to configure Eclipse to not interpret the Java libraries you're using as native code. Now, I don't personally use Eclipse so I don't know where the proper settings would be, but based off of this answer, it looks like Eclipse automatically assumes that the libs folder in the root of your project contains native libraries. The easiest solution may be to move any Java libraries you are using into a different folder (such as libraries).

like image 33
FuegoFro Avatar answered Nov 01 '22 19:11

FuegoFro