Error package `com.google.android.gms...` doesn't exist Error package `com.google.android.gms...` doesn't exist android android

Error package `com.google.android.gms...` doesn't exist


Can't find the class com.google.android.gms.location.LocationClient (android)

There is some problem with the last GPS lib. You have to use an older version than the latest(6.+). Try with an older version. I didn't see anything inside the doc deprecated or missing about the LocationClient.class...

compile 'com.google.android.gms:play-services:5.+'


I think the best solution is, add compile API on your Gradle. services-location has this method.

 compile 'com.google.android.gms:play-services-maps:9.8.0' compile 'com.google.android.gms:play-services-location:9.8.0'

if you wish to include other services, please refer here:https://developers.google.com/android/guides/setup (scroll down)


Google Play Services is now modular, you can select the packages you want from it.

To get analytics add:

compile 'com.google.android.gms:play-services-analytics:7.3.0'

to you build.gradle's dependencies section

P.Sreplace 7.3.0 with new version as they arrive, or replace with "+" to always get the latest