Integration Options |
Follow these steps to manually integrate Localytics into your Windows RT app.
this.Integrate(appKey); CoreWindow.GetForCurrentThread().VisibilityChanged += (sender, args) => { if (args.Visible) { this.OpenSession(); this.Upload(); } else { this.CloseSession(); this.Upload(); } };