Everything works right the first time, if you launch a second time you see this error:
FATAL EXCEPTION: main Process
You should call stopAutoManage() in the onPause() method of your Fragment like so:
onPause()
Fragment
@Override public void onPause() { super.onPause(); mGoogleApiClient.stopAutoManage(getActivity()); mGoogleApiClient.disconnect(); }