Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google maps SDK with new Intel Atom x86 emulator

Is there any way, how to get new x86 image for Android emulator working with Google Maps SDK?

like image 574
sealskej Avatar asked Mar 25 '12 01:03

sealskej


People also ask

Is Google Maps Android SDK free?

The Maps SDK for Android uses a pay-as-you-go pricing model.

What is a map SDK?

With the Maps SDK for Android, add maps to your Android app including Wear OS apps using Google Maps data, map displays, and map gesture responses. You can also provide additional information for map locations and support user interaction by adding markers, polygons, and overlays to your map.


2 Answers

First, make sure you follow the instructions to enable virtualization support for the emulator. If you don't, everything will work fine except you won't see a performance improvement:

http://developer.android.com/guide/developing/devices/emulator.html#vm-windows

Then follow these instructions to create an Android 2.3.3 AVD with Google Maps support, with corrections and thanks to http://38911bytes.blogspot.de/2012/03/how-to-use-google-maps-api-in-android.html:

  1. In Android Virtual Device Manager create an AVD with target "Google APIs (Google Inc.) - API Level 10"
  2. emulator -avd name_of_avd
  3. adb pull /system/etc/permissions/com.google.android.maps.xml
  4. adb pull /system/framework/com.google.android.maps.jar
  5. (optional) Remove the AVD you just created in the Android Virtual Device Manager
  6. In Android Virtual Device Manager create an AVD with target "Intel Atom x86 system Image (Intel Corporation) - API Level 10"
  7. emulator -partition-size 1024 -no-snapshot-save -avd name_of_avd
  8. adb remount rw
  9. adb push com.google.android.maps.xml /system/etc/permissions
  10. adb push com.google.android.maps.jar /system/framework
  11. Download mkfs.yaffs2.x86
  12. adb push mkfs.yaffs2.x86 /data
  13. adb shell
  14. cd /data
  15. chmod 777 mkfs.yaffs2.x86
  16. ./mkfs.yaffs2.x86 /system system.img
  17. exit
  18. adb pull /data/system.img (...be patient)
  19. Copy system.img into the avd directory for the avd you just created (likely in ~/.android/avd/name_of_avd.avd/)
  20. Reboot emulator

You're done! You can use essentially the same instructions using the new ICS (4.0.3) image if you want to use Google Maps on ICS.

like image 190
emmby Avatar answered Sep 28 '22 21:09

emmby


This tutorial works:

http://38911bytes.blogspot.de/2012/03/how-to-use-google-maps-api-in-android.html

Don't forget to use emulator -partition-size 1024 and android:installLocation="auto", preferExternal made me trouble.

like image 41
sealskej Avatar answered Sep 28 '22 21:09

sealskej