When I first start the emulator in Android Studio I get an information message,
guest hasn't come online in 7 seconds retrying
I am curious as to how to stop this because while it is on my screen for about 40 seconds I cannot do anything in the emulator.
In "Your Virual Device" - Click on Duplicate OR Duplicate your Device. It will work like Charm.
I faced this issue on using Android API 28 emulator with Android Studio 3.0.1. Android API 28 requires Studio 3.1 and above. Once I updated Studio to 3.1.4 and Android Emulator to the latest version, it worked.
tools->Android->AVD Manager
Choose the device then Cold Boot Now
I think AVD confuses to handle things and we need to duplicate the current AVD, and use it instead of the problematic one.
I managed to solve this issue by updating the
.ini
file manually. (I was not able to find a corresponding setting in the GUI.)The location of the
.ini
file, relative to your home directory, is:where
MyDevice
refers to the configured device name.Depending on your operating system, you may find your home directory according https://en.wikipedia.org/wiki/Home_directory.
Change the entry within
config.ini
fromno
toyes
:I had the same problem. Selecting Cold Boot Now in AVD manager solves the problem.
But I have to open AVD manager each time when I want to launch Emulator and I just want to click on Run app button and select device, without opening AVD manager.
To solve this: open AVD manager -> Edit device -> Show Advanced Settings -> Boot option -> select Cold Boot instead of Quick boot.