public void Init() { // Use Firebase library to configure APIs FirebaseApp.Configure(); // Register for remote notifications UNUserNotificationCenter.Current.Delegate = this; var authOptions = UNAuthorizationOptions.Alert | UNAuthorizationOptions.Badge | UNAuthorizationOptions.Sound; UNUserNotificationCenter.Current.RequestAuthorization(authOptions, (granted, error) => { Console.WriteLine(granted); }); UIApplication.SharedApplication.RegisterForRemoteNotifications(); Messaging.SharedInstance.Delegate = this; InstanceId.SharedInstance.GetInstanceId(InstanceIdResultHandler); }
// // 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) { FirebaseApp.Configure(); FirebaseAnalyticsImplementation.Initialize(); // We need this to ensure the execution assembly is part of the app bundle AddExecutionAssembly(typeof(ExtensibilityPointFactory).Assembly); // tests can be inside the main assembly AddTestAssembly(Assembly.GetExecutingAssembly()); // otherwise you need to ensure that the test assemblies will // become part of the app bundle AddTestAssembly(typeof(MustPassFixture).Assembly); #if false // you can use the default or set your own custom writer (e.g. save to web site and tweet it ;-) Writer = new TcpTextWriter("10.0.1.2", 16384); // start running the test suites as soon as the application is loaded AutoStart = true; // crash the application (to ensure it's ended) and return to springboard TerminateAfterExecution = true; #endif return(base.FinishedLaunching(app, options)); }