NotificationListenerService in Android 4.4 -
NotificationListenerService in Android 4.4 -
i have implemented notificationlistenerservice in app, , int works fine in jelly bean. that's not case kitkat, reason, couldn't find notification access settings, not anywhere.
so how should able utilize service when doesn't seems possible enable notification access? have enable programmatically or there other settings must in order work on kitkat?
edit snippet android manifest containing notificationlistenerservice parts.
<service android:name="ax.ha.it.smsalarm.service.flashnotificationservice" android:label="@string/app_name" android:permission="android.permission.bind_notification_listener_service"> <intent-filter> <action android:name="android.service.notification.notificationlistenerservice" /> </intent-filter> </service> android android-notifications android-4.4-kitkat
Comments
Post a Comment