handle push notification (FCM) while app is in background / kill - Android
What I want: I want to send notification from Firebase Console . When app is in background/kill and when user taps on Push Notification it can go to particular activity. Let's call it Current Offers Activity . Same thing should happen while app will be in foreground. What I understood: From firebase docs , when app is in foreground, push notifications sent from Firebase Console will be received in onMessageReceived method of MyFirebaseMessagingService class. But when app is in background/kill, the onMessageReceived method of MyFirebaseMessagingService class won't get called. What I want: When