Error implementing GoogleApiClient Builder for Android development
I see in their documentation where they clearly instruct you to include this import: import com.google.android.gms.common.GooglePlayServicesClient.ConnectionCallbacks; However, the error being thrown is expecting a different class than GooglePlayServicesClient.ConnectionCallbacks, it’s asking for GoogleApiClient.ConnectionCallbacks. Try changing your implements to use the more-qualified class name. That looks to be the only possible thing throwing the code for a … Read more