6

I connected my bluetooth headphone to my iMac and started listening to music, After starting Android emulator the sound quality became horrible. I am using macOs Mojave 10.14.6 and running Android 11.0 on the emulator.

2 Answers2

11

Start the emulator, and then disconnect your headphone, then reconnect it again.

arrmani88
  • 756
  • 8
  • 25
1

For me the sound was muffled as soon as I started up the android emulator.

This solution worked for me:

https://www.reddit.com/r/androiddev/comments/qsobx4/comment/hkfcxuu/?utm_source=reddit&utm_medium=web2x&context=3

If you don't care about sound on your emulator, you can turn it off:

  1. In the Virtual Device Manager, for the emulator in question, choose "show on disk"

  2. Look for the file config.ini and open it

  3. Add these 2 lines at the bottom of the file:

hw.audioInput=no

hw.audioOutput=no

  • One of those lines is probably already in the list (with a yes), so make sure to remove it

enter image description here

enter image description here

TheScrappyDev
  • 4,375
  • 2
  • 21
  • 25