Skip to content Skip to sidebar Skip to footer

Implicit Broadcasts

'Apps that target Android O can no longer register broadcast receivers for implicit broadcasts in their manifest.' ACTION_VIEW is an implicit broadcast. According to the above stat

Solution 1:

ACTION_VIEW is an implicit broadcast.

Not typically. ACTION_VIEW is used to start an activity, not as a broadcast Intent action.

one can no longer register as a broadcast receiver for any URI in the manifest

Broadcast receivers rarely filter on a Uri (i.e., have <data> elements in their <intent-filter>).

Post a Comment for "Implicit Broadcasts"