Merge "Add mcc and mnc to EmergencyRegResult"

This commit is contained in:
Hunsuk Choi
2022-09-23 17:29:46 +00:00
committed by Android (Google) Code Review
2 changed files with 8 additions and 0 deletions

View File

@@ -40,4 +40,6 @@ parcelable EmergencyRegResult {
boolean isEmcBearerSupported;
byte nwProvidedEmc;
byte nwProvidedEmf;
String mcc;
String mnc;
}

View File

@@ -54,4 +54,10 @@ parcelable EmergencyRegResult {
* This should not be set if UE is not in 5G mode.
*/
byte nwProvidedEmf;
/** 3-digit Mobile Country Code, 000..999, empty string if unknown. */
String mcc;
/** 2 or 3-digit Mobile Network Code, 00..999, empty string if unknown. */
String mnc;
}