Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a4f8ebb6 authored by Hunsuk Choi's avatar Hunsuk Choi Committed by Android (Google) Code Review
Browse files

Merge "Add mcc and mnc to EmergencyRegResult"

parents 9199eeff fbd5421a
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -40,4 +40,6 @@ parcelable EmergencyRegResult {
  boolean isEmcBearerSupported;
  byte nwProvidedEmc;
  byte nwProvidedEmf;
  String mcc;
  String mnc;
}
+6 −0
Original line number Diff line number Diff line
@@ -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;
}