INSTALL_FAILED_NO_MATCHING_ABIS when install apk

前端 未结 24 2291
滥情空心
滥情空心 2020-11-22 08:12

I tried to install my app into Android L Preview Intel Atom Virtual Device, it failed with error:

INSTALL_FAILED_NO_MATCHING_ABIS

What does

24条回答
  •  借酒劲吻你
    2020-11-22 08:23

    In general case to find out which library dependency has incompatible ABI,

    • build an APK file in Android Studio (menu Build > Build Bundle(s)/APK(s) > Build APK(s)) // actual on 01.04.2020
    • rename APK file, replacing extension "apk" with extension "zip"
    • unpack zip file to a new folder
    • go to libs folder
    • find out which *.jar libraries with incompatible ABIs are there

    You may try to upgrade version / remove / replace these libraries to solve INSTALL_FAILED_NO_MATCHING_ABIS when install apk problem

提交回复
热议问题