Open nmssalman opened 4 years ago
@nmssalman please fix the code formatting on this issue, it is hard to follow it.
@almirvuk Hello~ I have same problem here. I got an message below from console in Xcode.
6.22.0 - [Firebase/Core][I-COR000003] The default Firebase app has not yet been configured. Add [FIRApp configure];
(FirebaseApp.configure()
in Swift) to your application initialization. Read more: https://goo.gl/ctyzm8.
It is raised when I sent an message in Firebase Console.
@daeyeonjoo same issue, have u resolved?
Same issue here, has anyone resolved? Thanks.
iOS version: 15.3 XCode: 13.2.1
🐛 Bug Report
Here is how my AppDelegate looks like
`using System; using System.Collections.Generic; using System.Linq;
using Foundation; using Plugin.FirebasePushNotification; using UIKit;
namespace onlinefirebase.iOS { // The UIApplicationDelegate for the application. This class is responsible for launching the // User Interface of the application, as well as listening (and optionally responding) to // application events from iOS. [Register("AppDelegate")] public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate { // // This method is invoked when the application has loaded and is ready to run. In this // method you should instantiate the window, load the UI into it and then make the window // visible. // // You have 17 seconds to return from this method, or iOS will terminate your application. // public override bool FinishedLaunching(UIApplication app, NSDictionary options) { global::Xamarin.Forms.Forms.Init();
} `
Here is how i receive notification.
`using System; using Plugin.FirebasePushNotification; using Xamarin.Forms; using Xamarin.Forms.Xaml;
namespace onlinefirebase { public partial class App : Application { public App() { InitializeComponent();
} `
I'm receiving Token successfully, but when i push the data from firebase console, i'm not receiving any data.
Can anyone advice me what's wrong with me iOS C# application? even in a new solution also the same. Version: 1.x
Platform: