I have an app with 3 activities : a login activity, a main activity and a detail activity.
The login activity uses Google Sign In to get the account of the user (the token id and the email).
Both Main activity and Detail activity need theGoogleSignInAccount.
I don't want to the app to always start on login activity and transparently re-login when the user launch back the app.
I don't want to store the token id and the user email on shared preferences, I'd prefer to manipulate directly aGoogleSignInAccount everywhere in my app.
What is the proper flow to handle this sign in scenario ? Should I try to do a silentSignIn in every screen or is there a better way to store and retrieve the GoogleSignInAccount ?