Snap for 6338078 from 52ca68c81e290f76f623d6d1a60587fc913104a9 to rvc-release
Change-Id: I3007c5de809f452c11ce2ec191a8901ffc0cef9d
diff --git a/src/com/android/providers/telephony/TelephonyBackupAgent.java b/src/com/android/providers/telephony/TelephonyBackupAgent.java
index 58e3388..5c764c8 100644
--- a/src/com/android/providers/telephony/TelephonyBackupAgent.java
+++ b/src/com/android/providers/telephony/TelephonyBackupAgent.java
@@ -706,8 +706,15 @@
if (subscriptionInfo == null) {
return null;
}
- return PhoneNumberUtils.formatNumberToE164(subscriptionInfo.getNumber(),
- subscriptionInfo.getCountryIso().toUpperCase(Locale.US));
+ // country iso might not be always available in some corner cases (e.g. mis-configured SIM,
+ // carrier config, or test SIM has incorrect IMSI, etc...). In that case, just return the
+ // unformatted number.
+ if (!TextUtils.isEmpty(subscriptionInfo.getCountryIso())) {
+ return PhoneNumberUtils.formatNumberToE164(subscriptionInfo.getNumber(),
+ subscriptionInfo.getCountryIso().toUpperCase(Locale.US));
+ } else {
+ return subscriptionInfo.getNumber();
+ }
}
private void writeSmsToWriter(JsonWriter jsonWriter, Cursor cursor,