user4856537
user4856537

Reputation:

Is there a way to get notified when a UWP is uninstalled?

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

Answers (2)

bronze man
bronze man

Reputation: 1607

You can listen to the uninstall event:

Windows.ApplicationModel.PackageCatalog.PackageUninstalling

https://learn.microsoft.com/en-us/uwp/api/windows.applicationmodel.packagecatalog.packageuninstalling

Upvotes: 1

Igor Kulman
Igor Kulman

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

Related Questions