Skip to content Skip to sidebar Skip to footer

Found An Error That GoogleApiClient Is Not Connected Yet

private final static int CONNECTION_FAILURE_RESOLUTION_REQUEST = 9000; private double currentLatitude; private double currentLongitude; private GoogleApiClient mGoogleApiClient; pr

Solution 1:

You are requesting location updates in the onCreate() method.This should be called in the onConnected() callback once the GoogleAPIClient has connected succesfully.

LocationServices.FusedLocationApi.requestLocationUpdates(mGoogleApiClient, mLocationRequest, this);

Solution 2:

I had a same issue and I tried below code , Hope it helps for you also ..

if (mGoogleApiClient == null) {
mGoogleApiClient = new GoogleApiClient.Builder(this)
        .addConnectionCallbacks(this)
        .addOnConnectionFailedListener(this)
        .addApi(LocationServices.API)
        .build();
mGoogleApiClient.connect();
}

Post a Comment for "Found An Error That GoogleApiClient Is Not Connected Yet"