Reputation:
I'm developing a UWP app and I'd like to know if there is a way to get notified as soon as a user uninstall my app.
Is there something like a "uninstalled" notification callback through Azure WNS?
Upvotes: 0
Views: 1154
Reputation: 1607
You can listen to the uninstall event:
Windows.ApplicationModel.PackageCatalog.PackageUninstalling
Upvotes: 1
Reputation: 16361
No, nothing like this. Your bets bet would be integrate some kind of analytics service and compare active users to installs.
Upvotes: 0