What is the reason for the error “Device supports x86, but APK only supports armeabi-v7a”

前端 未结 23 2193
悲哀的现实
悲哀的现实 2020-12-13 01:36

I am playing around with Android Studio by testing some projects out from GitHub and when I try to emulate the apk, it does not let me choose an emulator.

It tells m

相关标签:
23条回答
  • 2020-12-13 01:45

    Turn off USB debugging and turn it back on the hardware device.

    0 讨论(0)
  • 2020-12-13 01:46

    Just go to device Settings >> Developer Options >> Restore Default Settings then enable USB debugging

    0 讨论(0)
  • 2020-12-13 01:48

    Device supports x86, but APK only supports armeabi-v7a)

    Sounds like you used an x86 image in the emulator.

    Create a separate one. Choose "other images" tab to find arm devices, if you have to.

    Or, run on an actual device. The repo you listed is meant to run on a Raspberry Pi 3 / ODroid, I think.

    0 讨论(0)
  • 2020-12-13 01:48

    On my physical device, I started getting this. The fix was to go into Developer Settings and turn off and on USB debugging.

    0 讨论(0)
  • 2020-12-13 01:48

    Try enabling Unknown Sources from Security Options. It worked for me.

    0 讨论(0)
  • 2020-12-13 01:52

    adb kill-server

    adb start-server

    Its working for me on windows OS.

    0 讨论(0)
提交回复
热议问题