I implement GoogleApiClient as bellow:
GoogleApiClient
mGoogleApiClient = new GoogleApiClient.Builder(this) .enableAutoManage(this, 0 /* client
I had the same problem (Already managing a GoogleApiClient with id 0) in a fragment, and finally I resolved it :
onStart()
onStop()
yourApiGoogle.stopAutoManage(context);
Have a nice day...