Emulator: emulator: ERROR: Running multiple emulators with the same AVD is an experimental feature

前端 未结 6 1875
心在旅途
心在旅途 2021-02-03 19:16

I removed the emulator and reinstalled it and got the same error.

Emulator: emulator: ERROR: Running multiple emulators with the same AVD is an experimental

相关标签:
6条回答
  • 2021-02-03 19:43

    The very simple solution which is working all the time is to stop the emulator before launching the new project. If this error comes back you make a duplication of the AVD and delete the old one and run the new one. It works all the time.

    0 讨论(0)
  • 2021-02-03 19:49

    Removing the .lock files did the trick for me. Find the avd and remove the lock files. In a Mac .android/avd/'NAMEOFAVD.avd directory . The files I removed were hardware-qemu.ini.lock and multiinstance.lock.

    0 讨论(0)
  • 2021-02-03 19:51

    Removing the cache could help

    sudo rm /home/${USER}/.android/avd/*/*.cache
    
    0 讨论(0)
  • 2021-02-03 19:52

    This means that your AVD manager thinks that your emulator is running. It thinks that because it sees lockfiles in your avd directory. If your emulator is not running they you can (should) safely delete the lockfiles here :

    $ rm $HOME/.android/avd/<name-of-your-avd>.avd/*.lock
    
    0 讨论(0)
  • It can be solved using this method. It worked for me. Follow the steps.

    1. Open Andrid Studio.
    2. Go to AVD Manager.
    3. In the Actions column, for the respective avd, click on the down arrow and click on Stop.

    This will stop the emulator and then you can restart it from the commmand line.

    0 讨论(0)
  • 2021-02-03 19:58

    just open your task manger, look for adb.exe, end task of all abd.exe extensions and restart your emulator.

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