Last active
March 22, 2025 04:46
-
-
Save srishanbhattarai/463df6e2b1de558c812c296193498e5d to your computer and use it in GitHub Desktop.
Android Emulator CPU/Memory high usage solution
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://stackoverflow.com/questions/37063267/high-cpu-usage-with-android-emulator-qemu-system-i386-exe | |
The cause of the constant CPU usage is the sound. If you do not need sound in your emulator you can disable it by editing the AVD's config file. | |
Change/add those two lines | |
hw.audioInput=no | |
hw.audioOutput=no | |
On Linux/Mac the file is located at ~/.android/avd/<AVD_Name>.avd/config.ini | |
On Windows the file is located at C:\Users\<username>\.android\avd\<AVD_Name>.avd\config.ini |
Mmm... not efective.
It doesn't make any difference on Linux systems.
perfect solution. really reduced almost 30 to 40%
awesome solution.
it was reduced 30% of memory usage
worked! thank you!
about 20% reduction
thank you! it reduced around 25% memory usage
in my case no diference
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks a lot! This reduced almost 40% and perceptively reduced interactions with the emulator!