• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

[INSTALL_FAILED_NO_MATCHING_ABIS:没办法提取本机库,res = -113]

用户头像
it1352
帮助1

问题说明

我在导入到我的项目中的第三方库时遇到问题.

I have an issue with third party libraries that are imported to my project.

我阅读了很多有关此的文章,但没有获得有关如何正确处理它的任何信息.

I read quite a lot of articles about that but do not get any information how properly handle it.

我将课程.so放到文件夹中.

I put my classes .so to the folder.

问题是我尝试运行我收到的应用程序

Problem is that the i try to run the app i receive

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

正确答案

#1

2019年7月25日:

我在 Android Studio 3.0.1 中遇到了此问题:

查看大量帖子后,这里的修复起作用:

After checking lots of posts, here is Fix which works:

转到模块 build.gradle ,并在 Android 块中添加以下脚本:

Go to module build.gradle and within Android block add this script:

splits {
    abi {
        enable true
        reset()
        include 'x86', 'x86_64', 'armeabi', 'armeabi-v7a', 'mips', 'mips64', 'arm64-v8a'
        universalApk true
    }
}

简单的解决方案.随时发表评论.谢谢.

Simple Solution. Feel free to comment. Thanks.

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhbacaee
系列文章
更多 icon
同类精品
更多 icon
继续加载