在Android模擬器上安裝apk的時(shí)候出現(xiàn)INSTALL_FAILED_NO_MATCHING_ABIS
在 android{} block:
splits {
abi {
enable true
reset()
include 'x86', 'armeabi-v7a'
universalApk true
}
}
這個(gè)錯(cuò)誤提示的解決辦法。
是由于使用了native libraries 傍睹。該native libraries 不支持當(dāng)前的cpu的體系結(jié)構(gòu)。
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.
現(xiàn)在安卓模擬器的CPU/ABI一般有三種類型呕臂,INTEL X86,ARM,MIPS,
如果選擇用INTEL X86出現(xiàn)INSTALL_FAILED_NO_MATCHING_ABIS的錯(cuò)誤,那就改用ARM的
參考:http://stackoverflow.com/questions/24572052/install-failed-no-matching-abis-when-install-apk