I have a intent-filter declaration in the manifest for a broadcast.
<intent-filter>
<action android:name="android.intent.action.TIME_SET"/>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
<action android:name="android.intent.action.MY_PACKAGE_REPLACED"/>
<data android:scheme="content"/>
</intent-filter>
The problem is when I remove the <data android:scheme="content"/> the MY_PACKAGE_REPLACED action is received otherwise no.
What does the data tag in this case? Can't really understand from the documentation.
The <data> element says "there must be a Uri on the Intent, and it must match the rules provided in the <data> elements of the <intent-filter>". In your particular case, the rule is "the Uri must exist and it must have a content scheme".
Since none of those three broadcasts uses a content Uri, delete the <data> element.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With