Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created September 16, 2024 11:37
Show Gist options
  • Select an option

  • Save skydoves/e953e1ba1035e5ab1ac176cf4e616588 to your computer and use it in GitHub Desktop.

Select an option

Save skydoves/e953e1ba1035e5ab1ac176cf4e616588 to your computer and use it in GitHub Desktop.
my_service
class MyService: FirebaseMessagingService() {
override fun onNewToken(token: String) {
super.onNewToken(token)
// If you want to send messages to this application instance or
// manage this apps subscriptions on the server side, send the
// FCM registration token to your app server.
sendRegistrationToServer(token)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment