Reputation: 575
I have followed the steps to add firebase to our xamarin (forms) apps: https://learn.microsoft.com/en-us/xamarin/android/data-cloud/google-messaging/remote-notifications-with-fcm?tabs=windows.
I have tested this through postman and notifications work fine by sending notifications to https://fcm.googleapis.com/fcm/send
The question is regarding the firebase console. When adding firebase to the app project it stalls on step 4: "Run your app to verify installation", even though I've run the app several times and tested notifications through http. Any idea why or what I need to do to get this to work?
Upvotes: 3
Views: 890
Reputation: 417
For everybody that still needs to understand how it is possible to finalize the Firebase SDK verification in Xamarin.Forms, all you have to do is :
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
// ...
Firebase.Core.App.Configure();
return base.FinishedLaunching(app, options);
}
Upvotes: 1