INSTALL_FAILED_NO_MATCHING_ABIS when install apk

前端 未结 24 1926
滥情空心
滥情空心 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:40

    In the visual studio community edition 2017, sometimes the selection of Supported ABIs from Android Options wont work.

    In that case please verify that the .csproj has the following line and no duplicate lines in the same build configurations.

     armeabi;armeabi-v7a;x86;x86_64;arm64-v8a
    

    In order to edit,

    1. Unload your Android Project
    2. Right click and select Edit Project ...
    3. Make sure you have the above line only one time in a build configuration
    4. Save
    5. Right click on your android project and Reload

提交回复
热议问题