Is there a way to have the new Android NotificationListenerService gracefully degrade for versions prior to 4.3?
I thought that if the os does not recoginze a service then it is ignored in the manifest. This doesn't seem to be the case here. The following is what is in the manifest.
<service android:name=".services.NotificationListener"
android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE">
<intent-filter>
<action android:name=
"android.service.notification.NotificationListenerService" />
</intent-filter>
</service>
Thanks!