Everything works right the first time, if you launch a second time you see this error:
FATAL EXCEPTION: main Process
I suggest that you initialize your mGoogleApiClient in onCreate() instead of in onCreateView().
mGoogleApiClient
onCreate()
onCreateView()
As pointed out by @vlazzle, onCreateView() can be called more than once during a single Activity's lifespan.
Activity