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

前端 未结 11 1473
灰色年华
灰色年华 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条回答
  •  萌比男神i
    2020-11-29 01:34

    Anyone facing this while using cmake build, the solution is to make sure you have included the four supported platforms in your app module's android{} block:

     externalNativeBuild {
                cmake {
                    cppFlags "-std=c++14"
                    abiFilters "arm64-v8a", "x86", "armeabi-v7a", "x86_64"
                }
            }
    

提交回复
热议问题