Anti-aliasing does not seem to work in Android Emulator

Viewed 954

I was working fine with Android Emulator (on Manjaro Linux) a few weeks ago, but after updating software The GUI of Android Emulator is not rendering or anti-aliasing is not working anymore. My apps are displaying horrible texts.

enter image description here

enter image description here

enter image description here

I'm using Hardware-GLES 2.0 for my graphic emulator.

Additional info:

enter image description here

enter image description here

Is there another alternative Android emulator working with Visual Studio Code?


ANSWER: Android Studio's Android emulator is not an efficient emulator, a better emulator is Genymotion.

1 Answers

I had a same problem. Downgrading Android Emulator to lower version solved the issue.

Latest version (before 30.9.5) that I could find was 30.8.4 with build id 7600983.

In order to downgrade firstly you will need to download the emulator. Here are the links for the version 30.8.4:

You can also download even older versions here are few alternatives

After downloading the needed version of emulator you will need to unzip it.

The next thing is to replace your current emulator with new one.

  1. Go to your Android Sdk folder (mine was ~/Android/Sdk) cd ~/Android/Sdk
  2. Rename your current emulator files folder. mv emulator emulator.bak
  3. Copy new emulator cp -r ~/Downloads/emulator-linux_x64-7600983/emulator/ .
  4. Replace package.xml file (otherwise Android Studio will not recognize your new emulator)
    cp emulator.bak/package.xml emulator/package.xml

Restart your Android Studio and Enjoy!

Related