| 1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using Foundation;
- using UIKit;
- namespace DevDaysTasks.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 ();
- Microsoft.WindowsAzure.MobileServices.CurrentPlatform.Init();
- // IMPORTANT: uncomment this code to enable sync on Xamarin.iOS
- // For more information, see: http://go.microsoft.com/fwlink/?LinkId=620342
- SQLitePCL.CurrentPlatform.Init();
- LoadApplication (new App ());
- return base.FinishedLaunching (app, options);
- }
- }
- }
|