There are some reasons for this issue and sometimes its depends on device CM having two ways to send notifications Data messages { it will trigger the FirebaseMessagingService onMessageReceived method. Notification Messages { Notification messages are delivered to the system notification tray when the app is in the background. onMessageReceived method of your FirebaseMessagingService To avoid the issue of not receving messages <service If we set to true, this service with be automatically stopped when the user remove a task rooted in an activity owned by the application. The default is false. If the flag is false, there is an onTaskRemoved callback in your Service class. In this case you can detect the onTaskRemoved on "swipe" event and you can again start the FirebaseMessagingService
"message":{
"token":"bk3RNwTe3H0:CI2k_HHwgIpoDKCIZvvDMExUdFQ3P1...",
"data":{
"Nick" : "Mario",
"body" : "great match!",
"Room" : "PortugalVSDenmark"
}
}
}
it will not work on some devices, when an app is in the background.
"message":{
"token":"bk3RNwTe3H0:CI2k_HHwgIpoDKCIZvvDMExUdFQ3P1...",
"notification":{
"title":"Portugal vs. Denmark",
"body":"great match!"
}
}
}
For apps in the foreground, messages are handled by a callback function
add below code in manifest file
android:name="com.yourapp.SERVICE"
android:stopWithTask="false" />
How to reduce APK package size?
What is Android?
Key Points to remember while develop the Android Application.
Set Activity to Fullscreen Mode in Android - RRutors
How to Use Deprecated Handler() in Android - RRutors Guide
Fix Duplicate Files in APK Build.gradle Issue - RRutors
How to start a new activity on button click
What is NetworkOnMainThread Exception?
How to Get bitmap from drawable: Android
What is Context?
What is the Different Between val and var in Kotlin?
What is Intent? What is the difference between an implicit intent and an explicit intent?
What happens next when the device switches between portrait and landscape?
FragmentPagerAdapter deprecated, Since API 27.1.0 FragmentPagerAdapter is deprecated.
Decompile APK Files: How to Get Source Code - RRutors Guide
Fix Play Store Rejection Due to SMS Permission - RRutors
Explain Fragment Life Cycle
How to validate email address in Android with Kotlin?
How to save activity State in Android?
How to copy database from assets folder in android using kotlin
How can i comment inside xml file in android studio?
FCM Not Receiving Notifications in Android - RRutors
How to get screen size (width,height) in Android?
Open PDF in Google Drive with Intent in Android - RRutors
What are the notifications available in android?
Invoke-customs are only supported starting with android 0 --min-api 26
Symmetric vs Asymmetric Encryption in Android Server - RRutors
How To Set Text Color Programmatically Android TextView?
How to Exit android app on back pressed?
What is "shared preferences" in Android ?
What is the difference between match_parent and fill_parent?
How to Generate signed apk with android studio
Android Studio project R can't find
What is ANR in android?
How to convert DP to Pixel and Pixel to Dp?
Check List for Generate Signed APK Android
Fix Android Emulator Kill Error When Running Your App
Fix Error: Use JsonReader.setLenient(true) for Malformed JSON
Extract Date and Time from Long Type Variable - RRutors
What is Android Fragments?