有没有办法让新的 Android NotificationListenerService 为 4.3 之前的版本优雅降级?
我认为如果操作系统无法识别服务,那么它会在清单中被忽略。这似乎不是这里的情况。以下是清单中的内容。
<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>
谢谢!