INSTALL_FAILED_NO_MATCHING_ABIS

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

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

参考地址:
https://stackoverflow.com/questions/36414219/install-failed-no-matching-abis-failed-to-extract-native-libraries-res-113

你可能感兴趣的:(INSTALL_FAILED_NO_MATCHING_ABIS)