Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've tried to implement Google Maps v2 in my Android Application,but unfortunately instead of Maps I can see this message:

enter image description here

Is this possible to run these maps on Android emulator ( Platform 4.2 )

share|improve this question

7 Answers

up vote 4 down vote accepted

At the moment, referencing the Google Android Map Api v2 you can't run google maps v2 on Android emulator; you must use a device for your tests.

share|improve this answer
2  
Some users created an emulator that supports it! stackoverflow.com/questions/13691943/… – sabadow Jan 4 at 10:09

I've successful installed google map V2 on emulator with this guide.

you should do following step:

  • Create a new emulator Nexus S, Android 2.3.3 (don't use google API)

  • Install vending.apk and then gms.apk

share|improve this answer

Please Try following.It was successfully for me

http://saleh360.blogspot.in/2012/12/android-running-google-maps-api-v2_12.html

steps

1) Create new emulator with this configuration: www.dropbox.com/s/nunuh9htu25qfpz/stackoverflow_1.png

2) Start emulator and install following apk : GoogleLoginService.apk, GoogleServicesFramework.apk, Phonesky.apk. You can do this with following commands:

adb shell mount -o remount,yourAvdName -t yaffs2 /dev/block/mtdblock0 /system
adb shell chmod 777 /system/app
adb push GoogleLoginService.apk /system/app/
adb push GoogleServicesFramework.apk /system/app/
adb push Phonesky.apk /system/app/

link for apk

  1. GoogleLoginService.apk
  2. GoogleServicesFramework.apk
  3. Phonesky.apk
  4. Google maps
  5. Google Play services

3) Install Google Play services and Google maps in emulator

adb install com.google.android.apps.maps-1.apk
adb install com.google.android.gms-2.apk

4)download google play service from sdkmanager->extra->google play service
5)import google-play-services_lib from androidsdk\extras\google\google_play_services
6)create new project and reference above project as library project
7)run project

share|improve this answer

You need to try on an emulator with the Google API's version. Each Platform has two versions Android and Android+Google APIs.

Ensure that when you create the AVD, you select on target field the Google APIs version.

And this can be also helpful: http://developer.android.com/google/play-services/setup.html#ensure

share|improve this answer
1  
Thank you, but after choosing "Android+Goodle API's" I can see another Message: <img255.imageshack.us/img255/6353/przechwytywaniera.png > – Dawid Dec 26 '12 at 12:55
I think this is a bug, because google play is never installed on the emulator, and google play usually updated the google play services apk, you may copy the google play services apk from a device and install it on the emulator – David Jan 4 at 10:00
1  
Some users created an emulator that supports it! stackoverflow.com/questions/13691943/… – sabadow Jan 4 at 10:10

I am able to have my emulator to run my app with Google Map V.2 (with Google Play Service V.4). I followed steps that others suggested with some failures, however I learned from it and somehow make it work. This is how:

  1. First of all: You must have coded your map app. correctly with all the appropriate permissions setup in your metafile XML, and have Google Play Services APK part of your app. To verify this is true, you must run your app on REAL device and know it works with its map there. Then you can proceed to process your emulator as shown below.

  2. Create a new emulator, or use your existing emulator with specs:

    • Target Name = Android 4.1.2
    • API Level = 16
    • CPU = Any. However, I found ARM is much faster/responsive than x86
    • Have enough RAM memory and space MB
  3. Run you emulator (your target emulator must be running!)

  4. Download the following APKs (available via dropbox per 4/2/2013) to your local directory (scan for virus!):

  5. Install these two APK into your running (target) emulator with ADB command:

    DOS/Console Prompt> adb -e install [path-to-APK-file]

    NOTE: Possibly, you have had these APKs installed in your emulator during this trial-error, and need to re-install for some reason. You must uninstall them first by: adb -e uninstall (com.google.android.gms or com.android.vending)

  6. Here, it is where things could get tricky. You think you were done, but when you open your app with Map again, but all you get is an error saying something in the form of: "Google Play services out of date. Requires 2012100 but found 2010110", and may see a button to "Update" Google Play. If this is the case, do NOT attempt to click the update button since it won't do anything. I got this error too, and I resolved it by both of these additional steps:

    • Clean-rebuild-reinstall my app into the emulator
    • Shutdown my emulator and re-start it.
  7. That's it, it works now nicely.

share|improve this answer

I tried the steps above (by paniniluncher) but received the following message:

Google Play services out of date. Requires 3025100 but found 2012110

I received this message because I required different versions of the files noted above. To resolve the issue I first uninstalled the files referenced above, downloaded the versions that I needed (as referenced in the following StackOverflow posting:

Google Play services out of date. Requires 3025100 but found 2012110

and then installed these files using the `adb -e install [path-to-APK-file] and then restarted the emulator and it worked perfectly!

share|improve this answer
where did you get apk files? – brabertaser1992 May 3 at 20:55
Sorry....It's been a while so I don't recall where I got the files but I'm pretty sure I just Googled them and found them on line. – user2101068 May 7 at 16:34

I have successfully run our app, which requires Google Maps API 2, on an AndroVM virtual machine.

AndroVM does not come with Google Maps or Google Play installed, but provides a modified copy of the Cyanogen Gapps archive, which is a set of the proprietary Google apps installed on most Android devices.

The instructions, copied from the AndroVM FAQ:

How can I install Google Apps (including the Market/Play app) ?

  • Download Google Apps : gapps-jb-20121011-androvm.tgz [basically the /system directory from the Cyanogen gapps archive without the GoogleTTS app which crashes on AndroVM]
  • Untar the gapps…tgz file on your host – you’ll have a system directory created
  • Get the management IP address of your AndroVM (“AndroVM Configuration” tool) and do “adb connect x.y.z.t”
  • do “adb root”
  • reconnect with “adn connect x.y.z.t”
  • do “adb remount”
  • do “adb push system/ /system/”

Your VM will reboot and you should have google apps including Market/Play.

You won’t have some Google Apps, like Maps, but they can be downloaded from the Market/Play.

So follow those instructions, then just install Google Maps using Google Play!

Some great side effects of using a VM rather than the emulator:

  • Vastly superior general performance
  • OpenGL acceleration
  • Google Play support

The only bump in the road so far has been lack of multi-touch gestures, which is a bummer for a mapping app! I plan to work around this with a hidden UI mechanism, so not such a huge problem.

share|improve this answer
Regarding not being able to two-finger-tap to zoom out, you can use a tap-tap-slide up or down to zoom in and out, which works with one finger (i.e. mouse). – Joel Malone May 18 at 12:54

protected by Community Mar 18 at 10:59

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.