Thanks, I manually add the line
Microsoft.WindowsAzure.MobileServices.CurrentPlatform.Init()
in AppDelegate.cs , then works fine.
public override bool FinishedLaunching(UIApplication app, NSDictionary options) { global::Xamarin.Forms.Forms.Init(); Microsoft.WindowsAzure.MobileServices.CurrentPlatform.Init(); LoadApplication(new App()); return base.FinishedLaunching(app, options); }
source share