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

前端 未结 11 1464
灰色年华
灰色年华 2020-11-29 00:38

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 han

11条回答
  •  渐次进展
    2020-11-29 01:09

    July 25, 2019 :

    I was facing this issue in Android Studio 3.0.1 :

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

    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.

提交回复
热议问题