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

Commit 16b8a0db authored by pkanwar's avatar pkanwar
Browse files

Adding fields in Telephony.java to support the CarrierProvider.

Needed for ImsiEncryption.

BUG: 35606429
Test: manual
Change-Id: I134e01db9643456f2815b48fb7c8ba1f1eac7860
parent e5ef6769
Loading
Loading
Loading
Loading
+23 −0
Original line number Diff line number Diff line
@@ -1175,6 +1175,29 @@ public final class Telephony {
        }
    }

    /**
     * Base column for the table that contain Carrier Public key.
     * @hide
     */
    public interface CarrierColumns extends BaseColumns {

        public static final String MCC = "mcc";
        public static final String MNC = "mnc";
        public static final String KEY_TYPE = "key_type";
        public static final String MVNO_TYPE = "mvno_type";
        public static final String MVNO_MATCH_DATA = "mvno_match_data";
        public static final String PUBLIC_KEY = "public_key";
        public static final String KEY_IDENTIFIER = "key_identifier";
        public static final String EXPIRATION_TIME = "expiration_time";
        public static final String LAST_MODIFIED = "last_modified";

        /**
         * The {@code content://} style URL for this table.
         * @hide
         */
        public static final Uri CONTENT_URI = Uri.parse("content://carrier_information/carrier");
    }

    /**
     * Base columns for tables that contain MMSs.
     */