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'm testing out the new Google Maps API V2 for Android and I'm getting this message when the app launches.

Error Message

This is running on an 4.1 emulator.

Here is my AndroidManifest.xml:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.maptest"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="15" />

<permission
    android:name="com.example.maptest.permission.MAPS_RECEIVE"
    android:protectionLevel="signature"/>
<uses-permission android:name="com.example.maptest.permission.MAPS_RECEIVE"/>
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>

<!-- Require OpenGL ES version 2 -->
<uses-feature
      android:glEsVersion="0x00020000"
      android:required="true"/>

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >

    <activity
        android:name=".MainActivity"
        android:label="@string/title_activity_main" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <meta-data
        android:name="com.google.android.maps.v2.API_KEY"
        android:value="##myapikey##"/>

</application>

MainActivity.java:

public class MainActivity extends Activity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.activity_main, menu);
        return true;
    }
}

activity_main.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <fragment xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/map"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        class="com.google.android.gms.maps.MapFragment"/>

</RelativeLayout>

Clicking "Update" crashes the app with the following stacktrace:

    12-03 22:14:29.816: E/Trace(1034): error opening trace file: No such file or directory (2)
12-03 22:14:30.347: W/GooglePlayServicesUtil(1034): Google Play services out of date.  Requires 2010100 but found 1
12-03 22:14:30.357: W/GooglePlayServicesUtil(1034): Google Play services out of date.  Requires 2010100 but found 1
12-03 22:14:30.368: W/GooglePlayServicesUtil(1034): Google Play services out of date.  Requires 2010100 but found 1
12-03 22:14:30.377: W/GooglePlayServicesUtil(1034): Google Play services out of date.  Requires 2010100 but found 1
12-03 22:14:30.397: W/GooglePlayServicesUtil(1034): Google Play services out of date.  Requires 2010100 but found 1
12-03 22:14:30.417: W/GooglePlayServicesUtil(1034): Google Play services out of date.  Requires 2010100 but found 1
12-03 22:14:30.677: D/gralloc_goldfish(1034): Emulator without GPU emulation detected.
12-03 22:26:11.557: D/AndroidRuntime(1034): Shutting down VM
12-03 22:26:11.557: W/dalvikvm(1034): threadid=1: thread exiting with uncaught exception (group=0x40a13300)
12-03 22:26:11.587: E/AndroidRuntime(1034): FATAL EXCEPTION: main
12-03 22:26:11.587: E/AndroidRuntime(1034): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=http://play.google.com/store/apps/details?id=com.google.android.apps.bazaar flg=0x80000 pkg=com.android.vending }
12-03 22:26:11.587: E/AndroidRuntime(1034):     at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1545)
12-03 22:26:11.587: E/AndroidRuntime(1034):     at android.app.Instrumentation.execStartActivity(Instrumentation.java:1416)
12-03 22:26:11.587: E/AndroidRuntime(1034):     at android.app.Activity.startActivityForResult(Activity.java:3351)
12-03 22:26:11.587: E/AndroidRuntime(1034):     at android.app.Activity.startActivityForResult(Activity.java:3312)
12-03 22:26:11.587: E/AndroidRuntime(1034):     at android.app.Activity.startActivity(Activity.java:3522)
12-03 22:26:11.587: E/AndroidRuntime(1034):     at android.app.Activity.startActivity(Activity.java:3490)
12-03 22:26:11.587: E/AndroidRuntime(1034):     at com.google.android.gms.internal.c$2.onClick(Unknown Source)
12-03 22:26:11.587: E/AndroidRuntime(1034):     at android.view.View.performClick(View.java:4084)
12-03 22:26:11.587: E/AndroidRuntime(1034):     at android.view.View$PerformClick.run(View.java:16966)
12-03 22:26:11.587: E/AndroidRuntime(1034):     at android.os.Handler.handleCallback(Handler.java:615)
12-03 22:26:11.587: E/AndroidRuntime(1034):     at android.os.Handler.dispatchMessage(Handler.java:92)
12-03 22:26:11.587: E/AndroidRuntime(1034):     at android.os.Looper.loop(Looper.java:137)
12-03 22:26:11.587: E/AndroidRuntime(1034):     at android.app.ActivityThread.main(ActivityThread.java:4745)
12-03 22:26:11.587: E/AndroidRuntime(1034):     at java.lang.reflect.Method.invokeNative(Native Method)
12-03 22:26:11.587: E/AndroidRuntime(1034):     at java.lang.reflect.Method.invoke(Method.java:511)
12-03 22:26:11.587: E/AndroidRuntime(1034):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
12-03 22:26:11.587: E/AndroidRuntime(1034):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
12-03 22:26:11.587: E/AndroidRuntime(1034):     at dalvik.system.NativeStart.main(Native Method)

I've also referenced the Google Play Services project. What am I doing wrong here?

share|improve this question
Are you using avd with google api or plain android? – Selvin Dec 3 '12 at 21:38
Plain Android, although I just tried switching to the Google API's for 4.1 and it's the same. – soren.qvist Dec 3 '12 at 21:41
Strangely enough I'm looking at exactly the same problem at exactly the same time. I'm assuming so far that it's because the Google Play Services APK isn't installed on the Emulator. The error is because the app is trying to launch Google Play (the store) to install the APK. It'll probably work fine on a device. – gazreese Dec 3 '12 at 21:44
Yes it looks that way doesn't it? The Google Services setup docs say nothing about installing the Play application though: developer.android.com/google/play-services/setup.html – soren.qvist Dec 3 '12 at 21:46
2  
show 8 more comments

6 Answers

up vote 15 down vote accepted

According to discussion with Android Developer on Google+, running the new Map API on emulator is not possible at the moment.

(The comment is from Zhelyazko Atanasov yesterday at 23:18, I don't know how to link directly to it)

Also, you don't see the "(via Bazaar)" part when running from an actual device, and the update button open the Play Store. I am assuming Bazaar is meant to provide Google Play Services on android emulator, but is not ready yet...

share|improve this answer
3  
Well, that's unfortunate – soren.qvist Dec 4 '12 at 11:21
I tried copying the latest GmsCore.apk directly to the emulator but that's not working either. It probably would work if I knew exactly which APKs to copy from my rooted device. – James Wald Dec 5 '12 at 4:28

I spent about one day to configure the new gmaps api(Google Maps Android API v2) on the android emulator. None of the methods those I found on the internet was not working correctly for me. But still I did it.

1) Create new emulator with next configuration:

www.dropbox.com/s/nunuh9htu25qfpz/stackoverflow_1.png

On other versions I was could not configure because have of various errors when installing the necessary applications.

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

2.1 adb shell mount -o remount,rw -t yaffs2 /dev/block/mtdblock0 /system
2.2 adb shell chmod 777 /system/app
2.3-2.5 adb push Each_of_the_3_apk_files.apk /system/app/

Links to download apk files. (www.dropbox.com/sh/20hcf8kxdk19z3c/Ukc8uGnk7p) I have copied it from my rooted android device.

GoogleLoginService.apk - www.dropbox.com/s/lfde3juixuy88rg/GoogleLoginService.apk

GoogleServicesFramework.apk - www.dropbox.com/s/9kurwyhbbuecaea/GoogleServicesFramework.apk

Phonesky.apk - www.dropbox.com/s/9x8924gtb52ksn6/Phonesky.apk

3) Install on the emulator Google Play services and Google maps. I have an error 491, if installing from Google Play store. I uploaded apps to the emulator and run installation from it(You can use adb to install this). Links to apps:

Google maps - www.dropbox.com/s/koo4wiwqg8agy8n/com.google.android.apps.maps-1.apk

Google Play services - www.dropbox.com/s/bh058hbrelccfsr/com.google.android.gms-2.apk

4) I success runned demo sample on the emulator after these steps.

www.dropbox.com/s/d83i4jnsh4s2b9c/stackoverflow_2.png

Sorry for making images and links, I have not rating and I want to help others;)

share|improve this answer
I think this method has some unnececery steps. Try my method from one of the other answer with only two apks to install... – Nemanja Kovačević Dec 8 '12 at 10:29
I tried your method, but at load applications to system/app dir adb generated an error saying that it is not enough free space. Creating a new emulator with a large amount of memory did not help. On other versions of the emulator your method did not work. – paha Dec 8 '12 at 13:06
1  
In step 3) the install command is adb install com.google.android.apps.maps-1.apk and adb install com.google.android.gms-2.apk. – sulai Jan 17 at 18:17
And make sure you get a version of google play service that fits your needs. You can download them from papktop.com/tag/google-play-services-apk. – sulai Jan 17 at 18:29
Just make sure you are always installing the latest Google Play APK version, because at the current moment, Google Play v2, won't let you install update (giving the nasty 491 error) and this update is required to run Google Maps applications. – Serhiy Apr 30 at 10:48

I'm answering this question for the second time because the solution I've tried that didn't work at first now works and I can recreate steps to make it work :)

I also had a feeling that lack of Google Play Store is a culprit here so I've tried to install Google Play Store to the emulator by advice on this link and this link combined. I've had some difficulties but at the end I've succeeded in installing Google Play Store and tested it by downloading some random app. But the maps activity kept displaying the message with the "Update" button. That button would take me to the store but there I would get a message about "item not found" and maps still didn't work. At that point I gave up.

Tomorrow I've fired app the same test app by accident and it worked 8-) I was very confused but quickly I've made a diff from the emulator where it's working and new clean one and I've determined two apps on the working one in /data/app/ directory: com.android.vending-1.apk and com.google.android.gms-1.apk. This is strange since when I were installing Google Play Store by instructions from those sites I was pushing Phonesky.apk, GoogleServicesFramework.apk and GoogleLoginService.apk and to a different folder /system/app.

Anyway, now the Android Google Maps API v2 is working on my emulator. These are the steps to do this:


Create a new emulator

  • for device choose "5.1'' WVGA (480 x 800: mdpi)"
  • for target choose "Android 4.1.2 - API level 16"
  • for "CPU/ABI" choose "ARM"
  • leave rest to defaults

these are the settings that are working for me. I don't know for different ones.


Start the emulator


install com.android.vending-1.apk and com.google.android.gms-1.apk via ADB install command


Google Maps should work now in your emulator. Please comment is it working for you?

share|improve this answer
Thanks for the steps Nemanja! I'll give this a try later on. – gazreese Dec 6 '12 at 10:52
Here is the link to my blog with the description of what I've tried to make this work nemanjakovacevic.net/blog/2012/12/… – Nemanja Kovačević Dec 6 '12 at 13:06
3  
Ok, if you have play services 4th revision, look at the @danbrough answer, and download apks specified in the comment: link – Ilja S. Dec 18 '12 at 14:58
1  
fail Google API; work for raw Android 4.2 API; thanks! – manuzhang Jan 7 at 2:23
1  
note that this works with x86 too, making the emulator much more snappy! – Caffeine Jan 24 at 9:58
show 2 more comments

I've been trying to run an Android Google Maps V2 application under an emulator and once I finally got Google Play Services running, I updated my SDK to Google Play Services revision 4 and my emulator wouldn't run my application any more.

I have now worked out how to update my emulator from my transformer tablet.

I used Titanium Backup to backup my asus transformer tablet (tf101) and then grabbed the com.android.vending and the com.google.android.gms apk files from the backup.

I installed these on an emulator configured with platform: 4.1.2, Api Level: 16, CPU Intel/Atom x86) and my Google Maps V2 application works again.

That was all .. none of the other steps regarding /system/app were required.

My application only uses the Google Maps API, no doubt, more steps are required if you use other Google Play services.

share|improve this answer
4  
Here are the files I used: vending.apk and gms.apk – danbrough Dec 13 '12 at 22:30
Doesn't matter if your emulator is x86 or ARM. Platform: 4.2 is fine also. – danbrough Dec 14 '12 at 13:30
1  
According to developer.android.com/google/play-services/index.html. Deveices with Android 2.2 (that is API level 8) should be sufficient as long as the devices also has GL ES version 2. – Jarl Dec 18 '12 at 20:45
I tried installing those files but adb showed me failure message that the files were already installed. I tried reinstalling, then it said the certificates are inconsistent. What should I do then? – strawberryjam Jan 5 at 16:45
I was able to uninstall pre-installed packages with adb uninstall com.android.vending and adb uninstall com.google.android.gms. After installing above mentioned packages my application runs but I see EGL_emulation: eglSurfaceAttrib not implemented warning messages in the log and no map is visible in the application. This is, I believe, emulator/GPU issue. My GPU is Radeon HD6870 and I was running Android 4.1.2 without Google APIs on the emulator. – Martynas Jan 27 at 19:25
show 7 more comments

I've been trying to run an Android Google Maps v2 under an emulator, i found many ways to do that but none of them worked for me. I have always this warning in the Logcat Google Play services out of date. Requires 3025100 but found 2010110 and when i want to update google play services on the emulator nothing happened. The problem was that the com.google.android.gms apk was not compatible with the version of the library in my android SDK.

I installed these files "com.google.android.gms.apk" , "com.android.vending.apk" on my emulator and my app Google maps v2 worked fine. None of the other steps regarding /system/app were required.

share|improve this answer
1  
those are the files to install: vending.apk and gms.apk – Adil Mar 11 at 12:40

I've created a (German) description how to get it working:

http://linuxchef.blogspot.de/2013/05/google-maps-api-v2-im-android-emulator.html

You basically need an emulator with at least API level 9 and no Google APIs. Then you'll have to get the APKs from a rooted device:

adb -d pull /data/app/com.android.vending-2.apk adb -d pull /data/app/com.google.android.gms-2.apk

and install them in the emulator:

adb -e install com.android.vending-2.apk adb -e install com.google.android.gms-2.apk

You can even run the native Google Maps App, if you have an emulator with at least API level 14 and additionally install com.google.android.apps.maps-1.apk

Have fun.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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