INSTALL_FAILED_NO_MATCHING_ABIS how to overcome

后端 未结 5 1499
夕颜
夕颜 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:09

    In your application.mk, try to add x86 at

    APP_ABI := armeabi-v7a

    and it should be look like this

    APP_ABI := armeabi-v7a x86

提交回复
热议问题