Detect if (current) application is uninstalled in iOS?

Can I find out if the user who downloaded the application that I developed was uninstalling it? How to put a tag or ask when when I delete an application I get a call to my server?

thanks!

+6
source share
2 answers

There is no specific notification when uninstalling the application. If you must talk to the server, suspend inactive accounts after a predetermined period.

+8
source

If the app is clicked on, Apple’s Feedback Service may be requested to get a list of devices from which the app was removed.

+5
source

Source: https://habr.com/ru/post/912896/


All Articles