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

Commit a796ca5b authored by Sungmin Choi's avatar Sungmin Choi Committed by Gerrit Code Review
Browse files

add columns of Carrier about MVNO

To recognize MVNO, use new fields, MVNO_MATCH_DATA and MVNO_TYPE
(SPN, IMSI, GID(Group Identifier Level 1)).

Bug: 8143480
Change-Id: Idfa06c6f39a2c15ff4f0815724823f44b76ac819
parent c13624a4
Loading
Loading
Loading
Loading
+15 −0
Original line number Diff line number Diff line
@@ -1820,6 +1820,21 @@ public final class Telephony {
          * but currently only used for LTE(14) and EHRPD(13).
          */
        public static final String BEARER = "bearer";

        /**
          * MVNO type
          * spn(Service Provider Name), imsi, gid(Group Identifier Level 1)
          */
        public static final String MVNO_TYPE = "mvno_type";

        /**
          * MVNO data
          * Use the following examples.
          * spn: A MOBILE, BEN NL, ...
          * imsi: 302720x94, 2060188, ...
          * gid: 4E, 33, ...
          */
        public static final String MVNO_MATCH_DATA = "mvno_match_data";
    }

    /**