summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.ControlGallery.iOS
diff options
context:
space:
mode:
authorE.Z. Hart <hartez@gmail.com>2016-03-24 10:33:32 -0600
committerE.Z. Hart <hartez@gmail.com>2016-03-24 10:48:21 -0600
commit1dcf5fef35c1c09e64f3c9e9ce6a31d2d0c3cd4a (patch)
tree2d3ae2fe8ef99ccca22306ecf530053d32d3bab1 /Xamarin.Forms.ControlGallery.iOS
parenta9e90a88ed401a8605b9798d4566d09a7192e280 (diff)
downloadxamarin-forms-1dcf5fef35c1c09e64f3c9e9ce6a31d2d0c3cd4a.tar.gz
xamarin-forms-1dcf5fef35c1c09e64f3c9e9ce6a31d2d0c3cd4a.tar.bz2
xamarin-forms-1dcf5fef35c1c09e64f3c9e9ce6a31d2d0c3cd4a.zip
Move initialization of configuration files (if needed) to a pre-build task
Remove unneeded init scripts
Diffstat (limited to 'Xamarin.Forms.ControlGallery.iOS')
-rw-r--r--Xamarin.Forms.ControlGallery.iOS/Main.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xamarin.Forms.ControlGallery.iOS/Main.cs b/Xamarin.Forms.ControlGallery.iOS/Main.cs
index cf4bfa12..921c475e 100644
--- a/Xamarin.Forms.ControlGallery.iOS/Main.cs
+++ b/Xamarin.Forms.ControlGallery.iOS/Main.cs
@@ -22,7 +22,7 @@ namespace Xamarin.Forms.ControlGallery.iOS
// you can specify it here.
#if __UNIFIED__
if (!Debugger.IsAttached)
- Insights.Initialize (App.Secrets["InsightsApiKey"]);
+ Insights.Initialize (App.InsightsApiKey);
#endif
UIApplication.Main (args, null, "AppDelegate");
}