Skip to content

Instantly share code, notes, and snippets.

@kakobotasso
Created May 17, 2019 03:32
Show Gist options
  • Save kakobotasso/c86930cddaedf3bf72a35518bba0f8e0 to your computer and use it in GitHub Desktop.
Save kakobotasso/c86930cddaedf3bf72a35518bba0f8e0 to your computer and use it in GitHub Desktop.
AppDelegate FireEvents
using System;
using System.Collections.Generic;
using System.Linq;
using Foundation;
using UIKit;
namespace FireEvents.iOS
{
[Register("AppDelegate")]
public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate
{
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
global::Xamarin.Forms.Forms.Init();
LoadApplication(new App());
Firebase.Core.App.Configure();
return base.FinishedLaunching(app, options);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment