Security Coding
Security Coding

Reputation: 177

Android Studio Emulator Stuck at Google Logo

I am Trying to Running My App in Android Studio Emulator, Emulator Has Been Opened But Stuck At Google logo Loading. What Can I Do? How Can I Run Emulator Fastly, MY PC is Low-End. I also Decrease the Size of the Ram In Emulator Settings But That's Not Solve MY Problem. Please Help ME How Can I Run Android Studio Emulator Fast In Low-End Pc

Upvotes: 10

Views: 14059

Answers (4)

sadhak kumar
sadhak kumar

Reputation: 41

I faced the same issue

the easiest solution is to wipe the data you can open your Android studio and open any random project in it. then go to Tools -> Device Manager -> select 3 dots on the emulator you want to fix and click on wipe data

Upvotes: 4

tehaandev
tehaandev

Reputation: 11

Go to Virtual Device Manager, tap the 3 dots at the far right of the AVD in question and click Edit. Change the Graphics to Software.

Upvotes: 1

Waleed Ahmed Khan
Waleed Ahmed Khan

Reputation: 1

I faced the same issue where my emulator was stuck on the Google logo or splash screen. Remember, I'm not using Android Studio to run emulators; I'm working on VS Code. To fix the problem of the emulator, follow these three commands in your command prompt (CMD). I hope this will be helpful for both Android Studio and VS Code users.

Three Steps to Fix the Android Emulator Issue (Stuck at Splash Screen):

  1. emulator -list-avds
  2. emulator -avd YourAVDName -wipe-data
  3. emulator -avd YourAVDName

Upvotes: 0

Karmveer Singh
Karmveer Singh

Reputation: 321

  1. Don't use the Virtual Device with the Play Store logo on it. Rather choose a virtual device without that play store logo. ( This worked in my case )

enter image description here

  1. Install HAXM from SDK Manager.
  2. Wipe out the data from the emulator and re-run it.

One of these might help.

Upvotes: 5

Related Questions