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

Commit 8535d9ed authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "Add Preferred Network menu"

parents a3695574 9f3ce973
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -48,6 +48,7 @@ public interface IccConstants {
    static final int EF_SST = 0x6f38;
    static final int EF_CFIS = 0x6FCB;
    static final int EF_IMG = 0x4f20;
    static final int EF_PLMN_SEL = 0x6F30;

    // USIM SIM file ids from TS 131.102
    public static final int EF_PBR = 0x4F30;
+3 −0
Original line number Diff line number Diff line
@@ -65,6 +65,9 @@ public final class SIMFileHandler extends IccFileHandler implements IccConstants
        case EF_INFO_CPHS:
        case EF_CSP_CPHS:
        case EF_PLMNWACT:
        /* Support for reading user & operator PLMN list from SIM
        (3GPP spec TS 11.11; File EFPLMNsel is read from SIM*/
         case EF_PLMN_SEL:
            return MF_SIM + DF_GSM;
        }
        String path = getCommonIccEFPath(efid);
+4 −1
Original line number Diff line number Diff line
@@ -62,7 +62,10 @@ public final class UsimFileHandler extends IccFileHandler implements IccConstant
        case EF_LI:
        case EF_PLMNWACT:
            return MF_SIM + DF_ADF;

        /* Support for reading user & operator PLMN list from SIM */
        /* 3GPP TS 11.11. File read : EFPLMNsel) */
        case EF_PLMN_SEL:
            return MF_SIM + DF_GSM;
        case EF_PBR:
            // we only support global phonebook.
            return MF_SIM + DF_TELECOM + DF_PHONEBOOK;