NotificationListenerService not working - even after giving permission

前端 未结 2 841
小蘑菇
小蘑菇 2021-01-18 02:16

Below is my code to capture notifications. I dont understand why the onNotificationPosted is not getting fired.

I am giving my app Notifications acc

2条回答
  •  逝去的感伤
    2021-01-18 02:36

    It does seem to be a bit flakey, but this is the actual fix in this case:

    @Override
    public IBinder onBind(Intent intent) {
        return super.onBind(intent);
    }
    

提交回复
热议问题