Hello,
I want to track/catch the uninstall event.
It means that when I am trying to un-install a apk I want to track the uninstall event and then Update with value [flag] [For example 1] at the database server resides at Web.
Is there is any way that I can track when the user trying to uninstall a APK from his/Mobile mobile?
I have registered a global Broadcast Receiver in Manifest which shows a notification when the user uninstalls a package. <receiver android:name=".YourReceiver"> <intent-filter an...
stackoverflow.com
Register a static intent filter/broadcast receiver and listen for any incoming Intents and handle as you wish to handle in this situation.