-1

I've come today to the work and tried to run my project on the test phone I have. Surprisingly I received the following error:

Installation failed with message INSTALL_FAILED_NO_MATCHING_ABIS: Failed to extract native libraries, res=-113.

Yesterday the project was running without any problems and I didn't have any problems with it for months and suddenly this happens. I've watched the commits from git since yesterday but there aren't any changes in gradle files.

Tried to restart the computer, invalidate cache & restart and even clean the code, nothing helped.

I am running the latest version of android studio 3.0 and I also tried to update platform tools and build-tools.

Marian Pavel
  • 2,726
  • 8
  • 29
  • 65
  • 2
    Possible duplicate of [INSTALL\_FAILED\_NO\_MATCHING\_ABIS when install apk](https://stackoverflow.com/questions/24572052/install-failed-no-matching-abis-when-install-apk) – Manoj Perumarath Nov 10 '17 at 11:40
  • I don't see it as a duplicate, the problem appeared without any changes of gradle files, tested on the same phone for months. tested on more than 1 phone and the problem still persists. I am going to investigate more. – Marian Pavel Nov 10 '17 at 11:48

1 Answers1

-1

Try to add the following code in your build.gradle file:

android
{..........
splits {
        abi {
            enable true
            reset()
            include 'x86', 'armeabi-v7a'
            universalApk true
        }
    }
.............
}
Kvaibhav01
  • 391
  • 1
  • 4
  • 14