AccessibilityService stops receiving events on reboot
I have an app that uses the accessibility services to listen to notifications. It works correctly unti the user reboots. If you reboot, you have to disable/re-enable the service from the accessibility services menu. Why does the app not get the events after a reboot? @Override protected void onServiceConnected() { pMan = new PreferencesManager(this); bulbManager = new BulbManager(((Context) this), pMan.getBridge()); AccessibilityServiceInfo info = new AccessibilityServiceInfo(); info.eventTypes = AccessibilityEvent.TYPE_NOTIFICATION_STATE_CHANGED; info.notificationTimeout = 100; info