summaryrefslogtreecommitdiff
path: root/PagesGallery/PagesGallery.Droid/MainActivity.cs
diff options
context:
space:
mode:
authorJason Smith <jason.smith@xamarin.com>2016-04-27 14:48:28 -0400
committerRui Marinho <me@ruimarinho.net>2016-04-27 14:48:28 -0400
commit8a00a96ffb34058bfb03f8cc16c28b38a79791a4 (patch)
tree294842819c3b051e9b4050971475fda48431f109 /PagesGallery/PagesGallery.Droid/MainActivity.cs
parent2d9288eee6e6f197364a64308183725e7bd561f9 (diff)
downloadxamarin-forms-8a00a96ffb34058bfb03f8cc16c28b38a79791a4.tar.gz
xamarin-forms-8a00a96ffb34058bfb03f8cc16c28b38a79791a4.tar.bz2
xamarin-forms-8a00a96ffb34058bfb03f8cc16c28b38a79791a4.zip
Azure support (#143)
* Initial import of azure support for pages * Add nuspec for azure * move azure nuspec to correct location * Update Newtonsoft.Json to 6.0.4 * Add converters * Fix package
Diffstat (limited to 'PagesGallery/PagesGallery.Droid/MainActivity.cs')
-rw-r--r--PagesGallery/PagesGallery.Droid/MainActivity.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/PagesGallery/PagesGallery.Droid/MainActivity.cs b/PagesGallery/PagesGallery.Droid/MainActivity.cs
index b991250c..37f4a4ff 100644
--- a/PagesGallery/PagesGallery.Droid/MainActivity.cs
+++ b/PagesGallery/PagesGallery.Droid/MainActivity.cs
@@ -15,8 +15,10 @@ namespace PagesGallery.Droid
ToolbarResource = Resource.Layout.Toolbar;
TabLayoutResource = Resource.Layout.Tabbar;
- base.OnCreate(bundle);
+ Microsoft.WindowsAzure.MobileServices.CurrentPlatform.Init();
+ base.OnCreate(bundle);
+
Forms.Init(this, bundle);
LoadApplication(new App());
}