0

In this answer I have read we can do the following to "install" Google Play Services in the emulator:

Right click to a created project -> Open Module Settings -> Dependencies -> + button -> com.google.android.gms:play-services

Then, if we can click on Run, our app and the Google Play Services should be included in the executed emulator. Unfortunately, As @gdw2 commented in this answer: "setting up the Google Play Services SDK does not install a working Google Play app -- it just enables certain services provided by the SDK"

So, it seems the Android "Market" is not included. How to install it too?

screenshot adding dependency

Community
  • 1
  • 1
chelder
  • 3,819
  • 6
  • 56
  • 90

1 Answers1

0

It is not an answer for the question actually, but it is what I did:

I downloaded the apk I actually wanted to install using Google Play from my computer using: APK Downloader

I installed the apk I actually wanted using:

adb push myactuallywantedappnotgoogleplayapp.apk /system/app/.

Hopefully it will be useful to somebody.

chelder
  • 3,819
  • 6
  • 56
  • 90