All AVD images work on my machine except for Android 9.+ (Google Play)
& Android 9.+ (Google APIs)
(the Android Studio emulator for Android Q beta).
I just downloaded the most recent images. From android-Q/google_apis_playstore/x86/build.prop
:
ro.system.build.version.incremental=5506116
ro.system.build.version.release=10
ro.system.build.version.sdk=28
I am using Android Emulator version 29.0.11
.
However, when I start these up, I see the device frame with a black screen. I get no error message, just nothing. It stays like this indefinitely.
Is there any way to debug this or is this a common issue?
Update: on another device (same image), I got the following screen instead of a black screen, however, there is still nothing I can do:
You need to configure correctly the Hardware Acceleration for your Emulator. Please, follow these steps:
1) Install the Intel HAXM driver if you are on Windows and have Intel, follow these steps:
You should see a status message that includes the following information:
For Linux, check this link
For Mac, check this link
2) Open AVD Manager on Android Studio:
In my case all other emulators started, except
Q
. I have all needed SDK and AVDs.But every time emulator didn't start without any error.
I saw Emulator in Android Studio doesn't start and found a way to understand a reason. I started from
avd
path:and got an error:
PANIC: Broken AVD system path. Check your ANDROID_SDK_ROOT value [D:\Android]!
. In PANIC: Broken AVD system path. Check your ANDROID_SDK_ROOT value I found that we should readconfig.ini
inside 'Pixel_2_API_29.avd' folder and detect the lineI understood that I missed
android-29
image in SDK path!I knew that moved SDK and AVD folders from C:... to D:\Android, but SDK was kept in two folders.
And I forgot to change one system variable (
ANDROID_HOME
):So I changed it to
D:\Android
and restarted the PC.After restarting I deleted old SDK folder (in 'AppData\Local\Android'). Then I started again:
I fixed it by reinstalling Android Studio entirely.
Actually, I just wanted to reinstall the Android SDK, however, you seem to need to install a stable version of Android Studio for that. After that, I set everything up the same way again and ran the beta version and now it works.