I'm using GPGS in my app for achievements. I would like to connect to GPGS on startup so I can load and set user achievements. But I want to connect only if the user earlier connected to it by clicking a connect button in the app.
Use case 1:
- User opens app
- App does not connect to GPGS
Use case 2:
- User opens app
- Clicks button to connect to GPGS
- Closes app
days later
- User opens app
- App connects to GPGS
I used to store a boolean flag in the shared prefs to know if the app is authorized. The problem is that I have no way to know when the user signs out in the achievements Activity or disconnects the app in the devices google settings.
What I would like to do is something like
if(mGoogleApiClient.isAutorized(){
mGoogleApiClient.connect();
}
Any ideas how I can figure out if the app is authorized?
When you call
mGoogleApiClient.connect()
, this is not visible to the user unless the login was successful (and the banner appears with their profile picture).You have to specifically call
result.startResolutionForResult()
with theresult
fromonConnectionFailed
to start the user visible login flow. As long as you don't call that until the user clicks the login button then you'll have the behavior you want.Note that if you are using the
GameHelper
/BaseGameActivity
classes, you may need to disable the default behavior of auto-login and only callbeginUserInitiatedSignIn()
(which does the abovestartResolutionForResult()
call for you) when the user specifically clicks the login button.The FAQ states: