Could not launch './qemu/linux-x86_64/qemu-system-i386': No such file or directory

前端 未结 10 1306
一向
一向 2021-02-18 13:42

With 25rc1 of the SDK tools I am having a problem when starting the emulators from $PATH

➜  ~  which emulator
/home/ligi/bin/android-sdk/tools/emulator
➜  ~  emu         


        
10条回答
  •  生来不讨喜
    2021-02-18 14:09

    If you're launching the emulator from command-line, try setting the current directory to your android sdk "tools" folder first.

    This works for me as a workaround:

    pushd ${ANDROID_HOME}/tools
    emulator -avd ${EMULATOR_NAME} -wipe-data&
    popd
    

提交回复
热议问题