firebase cloud messaging not received notification in some device
firebase cloud messaging not received notification in some device I used FCM to push notification, its work successfully in background and foreground mode, in the device that I used to debug while another device does not work in background mode. here is my code I wish ur help to know what the issue .is it from phone so how to fix it ? or from google services. here MyFirebaseInstanceIDService public class MyFirebaseInstanceIDService extends FirebaseInstanceIdService { SharedPrefManager sharedPrefManager; @Override public void onTokenRefresh() { // Get updated InstanceID token. String refreshedToken = FirebaseInstanceId.getInstance().getToken(); Log.wtf("myfirebase", "Refreshed token: " + refreshedToken); sendRegistrationToServer(refreshedToken); } public void sendRegistrationToServer(String refreshedToken ) { sharedPrefManager=new SharedPrefManager(getApplicationCon...