I\'m working with Firebase and testing sending notifications to my app from my server while the app is in the background. The notification is sent successfully, it even appe
Just override the OnCreate method of FirebaseMessagingService. It is called when your app is in background:
public override void OnCreate() { // your code base.OnCreate(); }