summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.ControlGallery.iOS/Main.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.ControlGallery.iOS/Main.cs')
-rw-r--r--Xamarin.Forms.ControlGallery.iOS/Main.cs30
1 files changed, 30 insertions, 0 deletions
diff --git a/Xamarin.Forms.ControlGallery.iOS/Main.cs b/Xamarin.Forms.ControlGallery.iOS/Main.cs
new file mode 100644
index 00000000..cf4bfa12
--- /dev/null
+++ b/Xamarin.Forms.ControlGallery.iOS/Main.cs
@@ -0,0 +1,30 @@
+using System.Diagnostics;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using Xamarin.Forms.Controls;
+#if __UNIFIED__
+using UIKit;
+using Foundation;
+#else
+using MonoTouch.UIKit;
+using MonoTouch.Foundation;
+#endif
+
+namespace Xamarin.Forms.ControlGallery.iOS
+{
+ public class Application
+ {
+ // This is the main entry point of the application.
+ static void Main (string [] args)
+ {
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ #if __UNIFIED__
+ if (!Debugger.IsAttached)
+ Insights.Initialize (App.Secrets["InsightsApiKey"]);
+ #endif
+ UIApplication.Main (args, null, "AppDelegate");
+ }
+ }
+}