mirror of
https://github.com/jwetzell/qController.git
synced 2026-07-26 10:38:50 +00:00
21 lines
580 B
C#
21 lines
580 B
C#
using Foundation;
|
|
using UIKit;
|
|
using Serilog;
|
|
|
|
namespace qController.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();
|
|
Log.Logger = new LoggerConfiguration().WriteTo.NSLog().MinimumLevel.Error().CreateLogger();
|
|
|
|
LoadApplication(new App());
|
|
|
|
return base.FinishedLaunching(app, options);
|
|
}
|
|
}
|
|
}
|