Assume I have a LoginActivity
where user can either register or login with existing credentials. I don't want FirebaseInstanceIdService
to generate a token, unless user is logged in and MainActivity
of the application is launched.
Thank you
You cannot block FirebaseInstanceIdService.onTokenRefresh()
from being called until the user is logged in.
What you could do in your use case is:
FirebaseInstanceIdService.onTokenRefresh()
ignore the event if the user is not logged-inFirebaseInstanceId.getToken()
and if != null
call onTokenRefresh()
(or directly your logic) manually.In this way you can process the token when the user is logged-in, and if the token is not available (or is rotated) you will receive the onTokenRefresh()
event later.
Update (July 3 2017): in the comments a reader reminded that FirebaseInstanceIdService.onTokenRefresh()
could be called after the user log in.
This is right. When the user log in, getToken()
could still return null
if onTokenRefresh()
has not been called earlier.
You need to hadle this case in your app. Most likely the user can use the app anyway, but you cannot send a push notification until you received the token.
When onTokenRefresh()
is finally called, if the user log in before, than you can associate the token the user.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With