p>
installation failed, message failed to complete session :INSTALL_FAILED_NO_MATCHING_ABIS: failed to extract native library, res=-113.
if an existing version of apk exists, it is possible to resolve this problem by uninstalling that version and then reinstalling it.
warning: uninstalling removes application data!
do you want to uninstall an existing application?
my reason is:
USES a hundred degree map:
p>
forgot to add the corresponding CPU type library
solution: add the corresponding type library in build.gradle (app) and synchronize to
When
is added, you are ready to install and run. If you do not use a third-party shelf package, just add the following compilation configuration
under defaultConfig in build.gradle (app)
splits { abi { enable true reset() //缺少什么CPU类型就添加对应的类型即可 include 'armeabi','x86', 'armeabi-v7a','x86_64','arm64-v8a', 'mips', 'mips64' universalApk true } }
p>
div>