Advertisement
Guest User

Untitled

a guest
Apr 29th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. public override bool FinishedLaunching (UIApplication app, NSDictionary options)
  2. {
  3. global::Xamarin.Forms.Forms.Init ();
  4. // Code for starting up the Xamarin Test Cloud Agent
  5.  
  6. #if ENABLE_TEST_CLOUD
  7. Xamarin.Calabash.Start();
  8. #endif
  9. App.ScreenHeight = (int)UIScreen.MainScreen.Bounds.Height;
  10. App.ScreenWidth = (int)UIScreen.MainScreen.Bounds.Width;
  11.  
  12. LoadApplication (new App ());
  13. return base.FinishedLaunching (app, options);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement