INSTALL_FAILED_NO_MATCHING_ABIS: Failed to extract native libraries, res=-113

来源:互联网 发布:飞思卡尔单片机课程 编辑:程序博客网 时间:2024/06/03 16:29

在做项目的呃时候,遇到了这个错误,
Failed to finalize session : INSTALL_FAILED_NO_MATCHING_ABIS: Failed to extract native libraries, res=-113
Session ‘app’: Error Installing APKs

多番查证说是:引入了的本地包虚拟机不支持

解决办法
build.dradle中
android{

splits {
abi {
enable true
reset()
include ‘x86’, ‘armeabi-v7a’,’x86_64’
universalApk true
}
}
}
不知道为什么有时候有些机器也不管用

阅读全文
1 0
原创粉丝点击