Is the Google Play Store supported in avd emulators?

After I split up, I can not find the answer to this question. Official google play store support in avd emulators.

I know that he was once stopped, and I heard that he was returned after a certain version of Android. I am using the avd android application version 4.4.3 (api 19) google. I do not see the application for playing on Google Play. Should I expect this? Or is there an official apk for the google play store that can be installed on the official avd?

+73
android avd google-play
Jul 26 '16 at 15:14
source share
6 answers

Starting with Android Studio 2.3.2, you can now create AVDs with a pre-installed Play Store. Currently supported on AVD works

  • Identify your Nexus 5 or 5X phone device or any Android Wear
  • System image with Android 7.0 (API 24)

Official source

For other emulators, you can try the solution mentioned in this answer .

+65
Jul 26 '16 at 15:27
source share

The Google Play Store officially has an Android emulator installed. Make sure you are using the latest version of Android Studio 2.4. In Android Studio AVD Manager, select the virtual device configuration that has the Google Play store icon next to it, and then select one of the system images labeled "Google Play." See the release note: https://androidstudio.googleblog.com/2017/04/android-studio-24-preview-4-is-now.html

Android Studio AVD Manager with support for the Google Play Store

+101
Apr 04 '17 at 2:45 on
source share

Yes, you can enable / use the Play Store on the Android emulator (AVD): before that, you need to configure some preconditions:

  1. Launch the Android SDK Manager and select the Google Play Intel x86 Atom system image (recommended: because it will work relatively faster) of the required version of Android (for example, Android 7.1.1 or API 25).

[Note: please leave everything else as is if you are going to install it for the first time] Or install as the image below: enter image description here

  1. After the download is completed, go to ToolsAVD Management ...Create from Android SDK Manager.

  2. enter image description here

Check if you have specified the following option correctly. Not sure about internal and SD cards. You can choose different. And the goal should be your downloaded version of Android

  1. Also check Google Play Intel Atom (x86) in CPU / ABI provided

  2. Click OK

  3. Then run the Android emulator. There you will see the Android Play Store. See --- enter image description here

+18
Nov 23 '17 at 8:08
source share

There is no google play store in the avd emulator. But you can install it manually.

  • Install the Google API System Image API so that you already have google services (without a play store)

  • Create AVD from Google API Image

  • Download the smallest archive from http://opengapps.org/ and extract Phonesky.apk from it

  • Click Phoneky.apk on / system / priv -app / on avd.

  • Restart avd. Google game should be there.

Recently, I just tried to do it myself, and you can find a detailed tutorial on my blog: http://linuxoidchannel.blogspot.com/2017/01/how-to-install-google-play-store-on.html

+3
Jan 7 '17 at 10:39 on
source share

If you use the command line, you need to use one of the packages listed in

sdkmanager --list | grep "playstore" 

Once this is installed, you can use the appropriate package in

 avdmanager create avd --force --name testAVD --abi google_apis_playstore/x86_64 --package "system-images;android-28;google_apis_playstore;x86_64" -d 19 

Replace google_apis_playstore;x86_64 with the package you installed

0
Jul 03 '19 at 15:22
source share

Official support yet

It is not officially supported.

I was looking for an Android error tracker for [ "play store" emulator avd ]. I clicked on Android error 172531. And in a comment No. 3 back in July 16, a Google employee wrote:

Thank you for your feedback. We are working on support for installing applications from the Play Store to the emulator and will update you when this feature becomes available.

Bypass

I can think of three possible workarounds.

  • Ask your favorite app developers to download a copy of their app on Amazon Appstore . Then install the Appstore on your Android device. Then use the Appstore to install your favorite application.

  • Or: do an online search to find the .apk file for the required software. For example, if you want to install SleepBot in your Android emulator, you can search the Internet for Google [ SleepBot apk ]. Then use adb install to install the .apk file.

  • Or: try installing the Google Play store on your Android virtual device, although it is not supported. I have never tried this, but I am sure it can work.

-3
Feb 28 '17 at 23:03
source share



All Articles