INSTALL_FAILED_NO_MATCHING_ABIS error after Oreo update [duplicate]

冷暖自知 提交于 2019-12-02 15:37:40

问题


I'm actually working on 3 android applications (A-B-C ) , everything is going fine on all my devices , but when i updated my S7 Edge to Oreo , something weird happened , 2 applications (A-B) disappeared , only C remains on my phone. So , i wanted to reinstall them by ADB , and i got this error :

Installation failed with message INSTALL_FAILED_NO_MATCHING_ABIS: Failed to extract native libraries, res=-113. It is possible that this issue is resolved by uninstalling an existing version of the apk if it is present, and then re-installing.

when i click on uninstall , i got this error :

Unknown failure (at android.os.Binder.execTransact(Binder.java:682))

when i tried to reinstall the third application C which remains after Oreo update , everthing went fine .

So i just realized that something went wrong with that two application after Oreo update , it seems like A-B still exist on the device even though i can't find them , any help ?


回答1:


I finally figured out why i got this issue .

In the gradle.app of the two application getting the issue (A-B) , i was

apache.commons.io:2.4

i just remove this line from the app gradle

compile 'org.apache.directory.studio:org.apache.commons.io:2.4'

and now everything is working fine again

this answer helped me a lot to figure out mine .



来源:https://stackoverflow.com/questions/51773192/install-failed-no-matching-abis-error-after-oreo-update

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!