Hello,
it not work when stopping service and starting service again in android 14,
** it work only if set toggle service in "NotificationsHandlerService" and call "openPermissionSetting" every time for start button
fun openPermissionSettings(context: Context): Boolean {
// toggle service
disableServiceSettings(context)
enableServiceSettings(context)
context.startActivity(Intent(ACTION_NOTIFICATION_LISTENER_SETTINGS).addFlags(Intent.FLAG_ACTIVITY_NEW_TASK))
return true
}
Hello,
it not work when stopping service and starting service again in android 14,
** it work only if set toggle service in "NotificationsHandlerService" and call "openPermissionSetting" every time for start button