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

前端 未结 11 1496
灰色年华
灰色年华 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:24

    If you got this error when working with your flutter project, you can add the following code in the module build.gradle and within Android block and then in the defaultConfig block. This error happened when I was trying to make a flutter apk build.

    android{
        ...
        defaultConfig{
            ...
            //Add this ndk block of code to your build.gradle
            ndk {
                abiFilters 'armeabi-v7a', 'x86', 'armeabi'
            }
        }
    }
    

提交回复
热议问题