Reputation: 141
[ while opening AVD Manager getting
Emulator: qemu-system-i386.exe: warning: opening audio input failed
Emulator: audio: Failed to create voice `adc'
Emulator: audio: Failed to create voice `adc' got this error ? How to remove error ? ]1
Upvotes: 13
Views: 54812
Reputation: 4551
In Window 10. I was able to fix it by doing...
hw.dPad = yes
Upvotes: 0
Reputation: 1824
One option, following @palehorse's terse clue, is to edit your AVD's config.ini to disable audio.
Android Studio > Tools > AVD manager ...
Against your (previously setup) Virtual Device > Actions > Down arrow [Click it] > Show on Disk ...
This will take you to a directory like C:\Users\<username>\.android\avd\my_API_29_-_Android_10.avd
In that directory edit config.ini
Replace ...
hw.audioInput=yes
... with ...
hw.audioInput=no
hw.audioOutput=no
An entry for hw.audioOutput
did not previously exist.
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.
Upvotes: 3
Reputation: 21
It's your new Windows 10 Update.
To Fix: Click Start, go to ⚙ Settings> Privacy Settings> Microphone. Turn On "Allow apps to access your microphone"
Upvotes: 0
Reputation: 54
Go to Sdk -> emulator -> lib
and then open configuration settings named hardware properties, find the hw.AudioInput
field and set default to no
:
Upvotes: 3
Reputation: 1239
I solved the problem:
Never had that problem again.
Upvotes: 1
Reputation: 27486
Old question I know, but I was able to resolve this by editing the emulator and disabling the hw.audioInput setting.
Upvotes: 0
Reputation: 61
I solved the problem pluggin in a microphone and then removing it. Never had that problem again.
Upvotes: 6
Reputation: 180
Upvotes: 13