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.