在Android模拟器上安装apk的时候出现架构
INSTALL_FAILED_NO_MATCHING_ABISapp
这个错误提示的解决办法。spa
是因为使用了native libraries 。该native libraries 不支持当前的cpu的体系结构。.net
INSTALL_FAILED_NO_MATCHING_ABIS is when you are trying to install an app that has native libraries and it doesn't have a native library for your cpu architecture. For example if you compiled an app for armv7 and are trying to install it on an emulator that uses the Intel architecture instead it will not work.blog
解决办法:当前是写x86架构的模拟器,建立arm架构的模拟器,便能正常运行了get
参考:http://stackoverflow.com/questions/24572052/install-failed-no-matching-abis-when-install-apkit
若是是使用Genymotion出现上面的提示,请参考如下连接:io