The command “echo no | android create avd --force -n test -t android-22 --abi armeabi-v7a” failed and exited with 1 during

假装没事ソ 提交于 2019-12-05 04:29:19

Seems you forgot to add emulator dependency and that's why no valid ABI is found. To run the emulator you need to install the android-22 platform for emulator to works:

android: 
  components: 
    - ...
    # Specify at least one system image,
    # if you need to run emulator(s) during your tests
    - android-22
    - sys-img-armeabi-v7a-android-22
    - ...
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!