Reputation: 1
Hi i have a developed a simple map application based on the tutorial from android developers site and have generated the API key and run in the google emulator still i'm not getting my map displayed in the emulator only grids are shown......... can anyone help me on this
thank you......
Upvotes: 0
Views: 524
Reputation: 1710
Make Sure that you have Implement Following things.
Make Sure that you have selected google Api
Add following permissions in manifest file
uses-permission android:name="android.permission.INTERNET"
uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"
uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"
uses-library android:name="com.google.android.maps"
extend MapActivity in your java class
API key but as you said you have already generated a key .
Try the above given.. and hope now you will get the solution.
Upvotes: 1