I have initialised firebase in android without using the google-services plugin like this
FirebaseOptions.Builder builder = new FirebaseOptions.Builder()
.setApplicationId("application-id")
.setApiKey("api-key")
.setDatabaseUrl("database-url")
.setStorageBucket("storage-bucket")
.setProjectId("project-id")
.setGcmSenderId("gcm-sender-id");
FirebaseApp.initializeApp(context,builder.build());
Now after initialising the firebase app how can i get the token generated to send push notification via FCM