Android: Difference between ACTION_PACKAGE_FULLY_REMOVED and ACTION_PACKAGE_REMOVED
android, broadcastreceiver, package
Solution
See the highlight code its the difference between both of it...
ACTION_PACKAGE_REMOVED -: Broadcast Action: An existing application package has been removed from the device. The data contains the name of the package. The package that is being installed does not receive this Intent.
ACTION_PACKAGE_FULLY_REMOVED - : Broadcast Action: An existing application package has been completely removed from the device. The data contains the name of the package. This is like ACTION_PACKAGE_REMOVED, but only set when EXTRA_DATA_REMOVED is true and EXTRA_REPLACING is false of that broadcast.
Problem
I found 2 similar broadcast event `ACTION_PACKAGE_FULLY_REMOVED` and `ACTION_PACKAGE_REMOVED`. But what is there use cases differences? What is the real differences between them if I want to receive a broadcast event when a package has been un-installed? Pleas Note: I'm new on android Development and learning day by day.