diff options
author | Jiashen Wang <jiashenwang@google.com> | 2021-01-25 19:49:26 -0800 |
---|---|---|
committer | Jiashen Wang <jiashenwang@google.com> | 2021-02-02 17:57:40 -0800 |
commit | 85109678b22bffe07c3a13e537ed933d7d9e63fb (patch) | |
tree | 61543284aa7751b8ca16e80fcd492e7dd7e9aebe /src/com/android/settings/sim/SimNotificationService.java | |
parent | 428273765b9c8bd1a09834a6890cbb5bd63304fe (diff) |
Post SUW Slot Change Receiver Migration
Implement the case when user inserts / removes pSIM during the SUW.
Bug: 153811431
Bug: 170508680
Test: Manually tested
Change-Id: Iccc3a2fd416ccfb57c3b4f9dc7b32c0b7681c90b
Diffstat (limited to 'src/com/android/settings/sim/SimNotificationService.java')
-rw-r--r-- | src/com/android/settings/sim/SimNotificationService.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/com/android/settings/sim/SimNotificationService.java b/src/com/android/settings/sim/SimNotificationService.java index 0f52c8b70f..42b5e58cd8 100644 --- a/src/com/android/settings/sim/SimNotificationService.java +++ b/src/com/android/settings/sim/SimNotificationService.java @@ -71,6 +71,9 @@ public class SimNotificationService extends JobService { case SimActivationNotifier.NotificationType.SWITCH_TO_REMOVABLE_SLOT: new SimActivationNotifier(this).sendSwitchedToRemovableSlotNotification(); break; + case SimActivationNotifier.NotificationType.ENABLE_DSDS: + new SimActivationNotifier(this).sendEnableDsdsNotification(); + break; default: Log.e(TAG, "Invalid notification type: " + notificationType); break; |