Install_failed_no_matching_abis Failed To Extract Native Libraries Res=-113 After Updating To Android 8.0 Oreo
I have an issue with my app. I use a samsung s8 and my app was running fine until I updated to android oreo. I uninstalled my app and tried to run again but I get error install_fai
Solution 1:
If you have only 32 bit libraries, try to use
android {
defaultConfig {
...
ndk {
abiFilters "armeabi-v7a", "x86"
}
}
Note that inclusion of 64 bit libraries ("arm64-v8a") will be mandatory since the August 2019.
Post a Comment for "Install_failed_no_matching_abis Failed To Extract Native Libraries Res=-113 After Updating To Android 8.0 Oreo"