[INSTALL_FAILED_NO_MATCHING_ABIS: Failed to extract native libraries, res=-113]
13 September 2018 It worked for me when add more types and set universalApk with false to reduce apk size
splits {
abi {
enable true
reset()
include 'x86', 'x86_64', 'armeabi', 'armeabi-v7a', 'mips', 'mips64', 'arm64-v8a'
universalApk false
}
}
I faced same problem in emulator, but I solved it like this:
Create new emulator with x86_64 system image(ABI)
select device
select x86_64
That's it.
This error indicates the system(Device) not capable for run the application.
I hope this is helpful to someone.
July 25, 2019 :
I was facing this issue in Android Studio 3.0.1 :
After checking lots of posts, here is Fix which works:
Go to module build.gradle and within Android block add this script:
splits {
abi {
enable true
reset()
include 'x86', 'x86_64', 'armeabi', 'armeabi-v7a', 'mips', 'mips64', 'arm64-v8a'
universalApk true
}
}
Simple Solution. Feel free to comment. Thanks.