INSTALL_FAILED_NO_MATCHING_ABIS how to overcome

后端 未结 5 1498
夕颜
夕颜 2020-12-09 18:23

When installing my app to Android L preview it fails with error:

INSTALL_FAILED_NO_MATCHING_ABIS.

My app uses arm only library, features that uses library is

5条回答
  •  清歌不尽
    2020-12-09 19:13

    You can find your answer in INSTALL_FAILED_NO_MATCHING_ABIS when install apk

    INSTALL_FAILED_NO_MATCHING_ABIS is when you are trying to install an app that has native libraries and it doesn't have a native library for your cpu architecture. For example if you compiled an app for armv7 and are trying to install it on an emulator that uses the Intel architecture instead it will not work.

提交回复
热议问题