Guest User

Untitled

a guest
May 16th, 2018
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. using Foundation;
  2. using Microsoft.EntityFrameworkCore;
  3. using System;
  4. using System.IO;
  5. using System.Linq;
  6. using System.Threading.Tasks;
  7. using UIKit;
  8.  
  9. namespace SistemaEscolar.iOS
  10. {
  11. [Register("AppDelegate")]
  12. public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate
  13. {
  14. public override bool FinishedLaunching(UIApplication app, NSDictionary options)
  15. {
  16. SQLitePCL.Batteries_V2.Init();
  17.  
  18. global::Xamarin.Forms.Forms.Init();
  19. LoadApplication(new App());
  20.  
  21. return base.FinishedLaunching(app, options);
  22. }
  23. }
  24. }
Add Comment
Please, Sign In to add comment