Google Maps API V2 Class Not Found

Google Maps api v2 class not found

In Eclipse go to:

"Project" -> "Properties" -> "Java Build Properties"

On the "Order and Export" tab I checked "Android Private Libraries" on my project. I also did this for the library project it references. This fixed my class not found errors following upgrading to SDK 22.

Android Google Maps class not found

I had the same problem as you.
Try recopying the google-play-services_lib from C:/sdk and import the project.
Right click the project, click Android, check "Is library" and check the last available API you have installed, for example "Android 5.0 Android Open Source Project 5.0 API21".
This should fix your problem. It's a bit tricky to add that library though.

Google map API v2 is not working

I had the same problem and got resolved by doing the following,

  • Remove the android-support-v4.jar that you added manually
  • Right click on the project and select Android Tools -> Add Support Library ...

After this everything worked for me.

Google Maps API v2 not working

Presumably, you have not added a reference to the Google Play Services library project to your app project. See the Google Play Services SDK documentation, specifically the section entitled "To set up a project to use the Google Play services SDK".

Error java.lang.ClassNotFoundException: com.google.android.gms.maps.MapFragment in Google Map V2

You problem is the way you added google-play-services to your project:

I have copied the google-play-services.jar in libs folder and set in the build path of eclipse.

This is wrong!
Read the first 3 steps of this blog post I wrote to get an idea of how to do it correctly:

Google Maps API V2

In short, you should import google-play-services as a project in your workspace.
and then reference it from your project.

this should be the result:

Sample Image



Related Topics



Leave a reply



Submit