watesoft Active Member Licensed User Longtime User Sep 27, 2020 #1 How do I monitor when an app is being uninstalled? I want a feedback, like uninstalling Windows application.
How do I monitor when an app is being uninstalled? I want a feedback, like uninstalling Windows application.
Erel B4X founder Staff member Licensed User Longtime User Sep 27, 2020 #2 You will need to have a foreground service and add an intent filter that listens to the following action: android.intent.action.PACKAGE_REMOVED Upvote 0
You will need to have a foreground service and add an intent filter that listens to the following action: android.intent.action.PACKAGE_REMOVED
watesoft Active Member Licensed User Longtime User Sep 28, 2020 #3 Erel said: You will need to have a foreground service and add an intent filter that listens to the following action: android.intent.action.PACKAGE_REMOVED Click to expand... Ok,thank you.I checked some information, it’s better to use FileObserver, so as to avoid occupying too much resources Upvote 0
Erel said: You will need to have a foreground service and add an intent filter that listens to the following action: android.intent.action.PACKAGE_REMOVED Click to expand... Ok,thank you.I checked some information, it’s better to use FileObserver, so as to avoid occupying too much resources