INSTALL_FAILED_NO_MATCHING_ABIS 的解决办法
INSTALL_FAILED_NO_MATCHING_ABIS 在Android模拟器上安装apk的时候出现 ``` 16:31 Failed to finalize session : INSTALL_FAILED_NO_MATCHING_ABIS: Failed to extract native libraries, res=-113 16:31 Session 'app': Error Installing APKs 这个错误提示, 是由于使用了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...