Skip to content

Instantly share code, notes, and snippets.

@tbatsuur
Created October 20, 2018 21:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tbatsuur/4ce3cd903f7d4a03ad7c761b02056f59 to your computer and use it in GitHub Desktop.
Save tbatsuur/4ce3cd903f7d4a03ad7c761b02056f59 to your computer and use it in GitHub Desktop.
private fun grabFcmToken(){
FirebaseInstanceId.getInstance().
instanceId.addOnCompleteListener {task ->
if (task.isSuccessful){
Log.d("FCMActivity", task.result.token)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment