In this app, I am trying to add a functional V2 google map. I\'ve looked at most of the tutorials for creating an activity, obtaining a key for the maps, and creating the xm
I am trying to deploy Google Play Services V2 (for Google Map functionalities) on Android 2.3.4. (API level 10), I had the same problem. Here is how I solved it:
google-play-services_lib had to be included as a library. In Eclipse, you can do this as follows:
This is important: please ensure the project build target for the library is the same as the one used for your app.
Because the API version is beneath 11, SupportMapFragment is used instead of MapFragment.
Hope this helps. It has taken me at least three solid hours to work this one out.