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_failed_no_matching_abis failed to extract native libraries res=-113 . My app still runs ok on other devices. I read these posts : Error INSTALL_FAILED_NO_MATCHING_ABIS after updating Nexus 5x to Oreo INSTALL_FAILED_NO_MATCHING_ABIS error on Android 8 [INSTALL_FAILED_NO_MATCHING_ABIS: Failed to extract native libraries, res=-113]
but nothing seems to work for me. I cannot figure out if I have to remove some libraries, the ones that are mentioned do not exist in my app, or if I have to add something. I also tried to add
splits {
abi {
enable true
reset()
include 'x86', 'armeabi-v7a'
universalApk true
}
}
in my gradle but it didn't work either.