Reputation: 321
When I try to install apk on Xamarin Android Player I'm getting next error:
Failure [INSTALL_FAILED_NO_MATCHING_ABIS]
I use:
USB Debugging is allowed and it displays in attached devices list (adb devices)
Upvotes: 1
Views: 574
Reputation: 605
INSTALL_FAILED_NO_MATCHING_ABIS
: This error says that you try to install an app that has native libraries and they don't match with your CPU architecture. Make sure to compile the app for the CPU architecture (armeabi-v7a/Intel) of the test device. E.g if the app is compiled for arm and the deployment device has Intel this error will be shown.
Upvotes: 0