June 2018
Beginner to intermediate
394 pages
9h 2m
English
Create an Android Studio project and connect it with Firebase and the configurations discussed previously. Go to Tools and choose Firebase, and in the Firebase window panel, choose to Connect to Firebase. If your project exists, choose it, and if not, create a new project. After connecting, add the FCM dependencies, as shown in the following snippet:
implementation 'com.google.firebase:firebase-messaging:15.0.2'
Now create a new Android Studio project and add the following code snippets to generate push tokens.
Create a class called MyFirebaseInstanceIDService and add the following code:
class MyFirebaseInstanceIDService : FirebaseInstanceIdService() { override fun onTokenRefresh() { //Fetch the push token ...