mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-03 22:47:54 +00:00
9899a6d33e
- Switch to Serilog for console logging - TCPSender is now persistent (let's hope) so can be used with passcode protected workspaces - UDP connection works with passcodes just can't timeout - Passcode prompt is automatic for workspaces that are password protected
22 lines
581 B
C#
22 lines
581 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.Debug().CreateLogger();
|
|
|
|
LoadApplication(new App());
|
|
|
|
return base.FinishedLaunching(app, options);
|
|
}
|
|
}
|
|
}
|