Skip to content Skip to sidebar Skip to footer

Install_failed_no_matching_abis On Emulator Oreo And Real Device Also

No problem on running other devices lollipop,marshmallow,nougat emulators and real devices. Oreo 8 doesnot support. showing this error INSTALL_FAILED_NO_MATCHING_ABIS . gradle belo

Solution 1:

8.0 is much more strict about what's in the lib folder

  1. extract apk file, see what's under lib/
  2. use packagingOptions to exclude non so files under lib/

example(in android block):

packagingOptions {
    exclude 'lib/commons-lang-2.6.jar'
}

Reference: https://issuetracker.google.com/issues/65941637

Post a Comment for "Install_failed_no_matching_abis On Emulator Oreo And Real Device Also"