hi.. zmdea..
I had the same problem.. but now i solve it..
I write the steps to solve the problem.. hope this helps you..
Create apiKey:
C:>"C:Javajdk1.5jre1.5binkeytool.exe" -list -alias androiddebugkey -keysto
re "C:Documents and SettingsbosepandianLocal SettingsApplication DataAndroiddebug.keystore" -storepass android -keypass android
After successfully executed the command, it gives the MD5 certificate finger print.
copy that fingerprint and go to sign up for google android apikey site.
you will get the apikey and apply that key in your xml file or java file.
In the java file you apply the key like this..
myMapView = new MapView(this,"your apikey here");
AndroidManifest
In the android manifest xml file, you just give the following permission and user library.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.bang.sys.maps">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<application android:label="@string/app_name">
<uses-library android:name="com.google.android.maps" />
<uses-sdk android:minSdkVersion="1"/>
<activity android:name=".MyMap" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
<uses-sdk> tag is optional if you are working in android version 1.0.
Hope this helps you..
Regards,
Bose.C 





