Loading packages/SystemUI/src/com/android/systemui/notetask/NoteTaskController.kt +7 −1 Original line number Diff line number Diff line Loading @@ -325,7 +325,13 @@ constructor( } else { // TODO(b/278729185): Replace fire and forget service with a bounded service. val intent = NoteTaskControllerUpdateService.createIntent(context) try { // If the user is stopped before 'startServiceAsUser' kicks-in, a // 'SecurityException' will be thrown. context.startServiceAsUser(intent, user) } catch (e: SecurityException) { debugLog(error = e) { "Unable to start 'NoteTaskControllerUpdateService'." } } } } Loading Loading
packages/SystemUI/src/com/android/systemui/notetask/NoteTaskController.kt +7 −1 Original line number Diff line number Diff line Loading @@ -325,7 +325,13 @@ constructor( } else { // TODO(b/278729185): Replace fire and forget service with a bounded service. val intent = NoteTaskControllerUpdateService.createIntent(context) try { // If the user is stopped before 'startServiceAsUser' kicks-in, a // 'SecurityException' will be thrown. context.startServiceAsUser(intent, user) } catch (e: SecurityException) { debugLog(error = e) { "Unable to start 'NoteTaskControllerUpdateService'." } } } } Loading