Here's the case: I'm trying to use Google API for using it's maps, but the emulator displays a grid instead a map. The API Key i'm using was obtained in http://code.google.com/android/maps-api-signup.html using the debug.keystore MD5
AVD is using Google APIs Level 10 ( 2.3.3 ) and there's a warnning: [2011-09-24 17:02:14 - ExercDroid] WARNING: Application does not specify an API level requirement! [2011-09-24 17:02:14 - ExercDroid] Device API version is 10 (Android 2.3.4) but in project proprieties, the Project build target is correct, Google APIs Level 10 ( 2.3.3 ). main.xml: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/ android" android:layout_width="fill_parent" android:layout_height="fill_parent"> <com.google.android.maps.MapView android:id="@+id/mapView" android:layout_width="fill_parent" android:layout_height="fill_parent" android:enabled="true" android:clickable="true" android:apiKey="0KypXMEcDw342WMdQHoG4TgmwdMknqLb2ZSVu0A"/> /> </RelativeLayout> manifest: <application android:icon="@drawable/icon" android:label="@string/ app_name"> <uses-library android:name="com.google.android.maps" /> <uses-permission android:name="android.permission.INTERNET" /> <activity android:name=".ExercDroidActivity" .... .... The emulator's map app works pretty well, meanwhile mine only displays a grid. What's wrong? Thank you any help. -- Bruno Lucena Bach. em Sistema de Informação - CIn/UFPE [email protected] [email protected] -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

