Add handling of permanent disabled sims

sim state is "UNKNOWN" when stateExtra is LOCKED and
lockedReason=PERM_DISABLED. Correct this.

Test: Manual
Bug: 254300616
Change-Id: I01c46cd868abd3e91fa37d80f5b75aec4b9f0014
This commit is contained in:
Katsuyuki Hirayama
2016-06-14 15:26:37 +09:00
committed by Mattias Nilsson
parent b931d69bd2
commit 4968b408b5

View File

@@ -1840,6 +1840,8 @@ public class KeyguardUpdateMonitor implements TrustManager.TrustListener, Dumpab
state = TelephonyManager.SIM_STATE_PIN_REQUIRED;
} else if (Intent.SIM_LOCKED_ON_PUK.equals(lockedReason)) {
state = TelephonyManager.SIM_STATE_PUK_REQUIRED;
} else if (Intent.SIM_ABSENT_ON_PERM_DISABLED.equals(lockedReason)) {
state = TelephonyManager.SIM_STATE_PERM_DISABLED;
} else {
state = TelephonyManager.SIM_STATE_UNKNOWN;
}