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:
stopAutoManage()
onPause()
Fragment
@Override public void onPause() { super.onPause(); mGoogleClient.stopAutoManage(getActivity()); mGoogleClient.disconnect(); }