Emulator: audio: Failed to create voice `adc'

后端 未结 8 1748
无人及你
无人及你 2020-12-13 15:53

[ while opening AVD Manager getting

Emulator: qemu-system-i386.exe: warning: opening audio input failed

Emulator: audio: Failed to create voice `adc\'

相关标签:
8条回答
  • 2020-12-13 16:43

    One option, following @palehorse's terse clue, is to edit your AVD's config.ini to disable audio.

    1. Android Studio > Tools > AVD manager ...

    2. Against your (previously setup) Virtual Device > Actions > Down arrow [Click it] > Show on Disk ...

    3. This will take you to a directory like C:\Users\<username>\.android\avd\my_API_29_-_Android_10.avd

    4. In that directory edit config.ini

    5. Replace ...

      hw.audioInput=yes
      

      ... with ...

      hw.audioInput=no
      hw.audioOutput=no
      

      An entry for hw.audioOutput did not previously exist.

    6. Restart the emulator a few times to get rid of lingering error messages.

    See Android AVD set custom hardware for other ways to disable audio.

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

    Just go to C:\users\sahil\.android\avd and delete .lock file.

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