android 5.1模拟器安装apk报INSTALL_FAILED_NO_MATCHING_ABIS
在Android模拟器上安装apk的时候出现
INSTALL_FAILED_NO_MATCHING_ABIS
这个错误提示的解决办法。
是由于使用了native libraries 。该native libraries 不支持当前的cpu的体系结构。
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.
参考:http://stackoverflow.com/questions/24572052/install-failed-no-matching-abis-when-install-apk
如果是使用Genymotion出现上面的提示,请参考以下链接:
参考:http://blog.youkuaiyun.com/wjr2012/article/details/16359113
解决Android模拟器安装APK错误
本文介绍了解决在Android模拟器上安装APK时遇到的INSTALL_FAILED_NO_MATCHING_ABIS错误的方法。该错误通常是因为应用包含了与模拟器CPU架构不匹配的本地库导致的。
5857

被折叠的 条评论
为什么被折叠?



