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.cs22
1 files changed, 4 insertions, 18 deletions
diff --git a/Xamarin.Forms.ControlGallery.iOS/Main.cs b/Xamarin.Forms.ControlGallery.iOS/Main.cs
index 921c475e..f4834f9b 100644
--- a/Xamarin.Forms.ControlGallery.iOS/Main.cs
+++ b/Xamarin.Forms.ControlGallery.iOS/Main.cs
@@ -1,30 +1,16 @@
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
+using Xamarin.Forms.Controls;
namespace Xamarin.Forms.ControlGallery.iOS
{
public class Application
{
- // This is the main entry point of the application.
- static void Main (string [] args)
+ 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.InsightsApiKey);
- #endif
- UIApplication.Main (args, null, "AppDelegate");
+ Insights.Initialize(App.InsightsApiKey);
+ UIApplication.Main(args, null, "AppDelegate");
}
}
}