I am trying to register a BroadcastReceiver to catch an Intent with action android.intent.action.DELETE but I don’t get anything.
Below you may find the BroadcastReceiver:
<receiver
android:name=".receiver.UninstallReceiver"
android:enabled="true">
<intent-filter>
<action android:name="android.intent.action.DELETE" />
</intent-filter>
</receiver>
Thanks in advance!!
ACTION_DELETEis used withstartActivity(), notsendBroadcast(), so you cannot receive suchIntentswith aBroadcastReceiver.