Mikhail
Mikhail

Reputation: 808

The Android emulator began to slow down

enter image description here

For no reason my emulator began to slow down. Each action occurs with a delay. And when the emulator starts, this message is displayed.

Some users have experienced emulator stability issues with this driver version. As a result, we're selecting a compatibility renderer. Please check with your manafacturer to see if there is an updated driver available.

I tried to change the driver of the video card and create a new emulator, this does not help.

Upvotes: 3

Views: 2091

Answers (2)

adrianekafikri
adrianekafikri

Reputation: 368

For my solution I did

  1. In your emulator, click more
  2. Select setting
  3. in advance tab
  4. change the OpenGL ES renderer to 'Desktop Native OpenGL

Upvotes: 2

Mikhail
Mikhail

Reputation: 808

The solution for me:

  1. Open your SDK Emulator folder (e.g. C:\Users\username\AppData\Local\Android\Sdk\emulator )
  2. Open Command Line window here
  3. Enter the: emulator -list-avds (to see a list of available emulators)
  4. Enter the: emulator -avd {name_of_emulator} -gpu host (for the forced-choice hardware gpu)
  5. You will see a warning again, but just ignore it.
  6. The emulator will no longer slow down

Upvotes: 5

Related Questions