I am trying to run a simple google map but its not working its showing only map background.checked on both emulator and device.
xml file:-
In your manifest file you have to add:
Like from: your.application.package to: com.themontcalm.droid
And yes if you are using
then remove from manifest file:
and add your api code to in manifest file also:
And in manifest file you are missing this:
so also add to this also in manifest file:
you should change android.R.id.content with R.id.map in your code
Something like:
map = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();