Abstract service to receive side channel notifications sent from
{@link android.support.v4.app.NotificationManagerCompat}.
To receive side channel notifications, extend this service and register it in your
android manifest with an intent filter for the BIND_NOTIFICATION_SIDE_CHANNEL action.
Note: you must also have an enabled
{@link android.service.notification.NotificationListenerService} within your package.
Example AndroidManifest.xml addition:
<service android:name="com.example.NotificationSideChannelService">
<intent-filter>
<action android:name="android.support.BIND_NOTIFICATION_SIDE_CHANNEL" />
</intent-filter>
</service> |