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

Commit 11264381 authored by Rambo Wang's avatar Rambo Wang Committed by Automerger Merge Worker
Browse files

Merge "Expose ServiceState#getDataNetworkType in telephony provider" am: 9446a523

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1639370

Change-Id: I15577030238d4e210f1a4f1f31abd937af4adf65
parents 228f0d97 9446a523
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -34219,6 +34219,7 @@ package android.provider {
    method public static android.net.Uri getUriForSubscriptionIdAndField(int, String);
    field public static final String AUTHORITY = "service-state";
    field public static final android.net.Uri CONTENT_URI;
    field public static final String DATA_NETWORK_TYPE = "data_network_type";
    field public static final String IS_MANUAL_NETWORK_SELECTION = "is_manual_network_selection";
    field public static final String VOICE_OPERATOR_NUMERIC = "voice_operator_numeric";
    field public static final String VOICE_REG_STATE = "voice_reg_state";
+7 −0
Original line number Diff line number Diff line
@@ -4572,6 +4572,13 @@ public final class Telephony {
         * This is the same as {@link ServiceState#getIsManualSelection()}.
         */
        public static final String IS_MANUAL_NETWORK_SELECTION = "is_manual_network_selection";

        /**
         * The current data network type.
         * <p>
         * This is the same as {@link TelephonyManager#getDataNetworkType()}.
         */
        public static final String DATA_NETWORK_TYPE = "data_network_type";
    }

    /**