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 onDestroy() method of your fragment like so:
stopAutoManage()
onDestroy()
@Override public void onDestroy() { super.onDestroy(); mGoogleApiClient.stopAutoManage(getActivity()); mGoogleApiClient.disconnect(); }