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

Commit b8025f32 authored by Junda Liu's avatar Junda Liu
Browse files

Hide APIs for simplified network settings.

Bug: b/17255752
Change-Id: Ibbe5d5cdbc2398ba0df2103bd7a33b98dc977734
parent 0cd0b186
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -28988,8 +28988,6 @@ package android.telephony {
  }
  public class TelephonyManager {
    method public void enableSimplifiedNetworkSettings(boolean);
    method public void enableSimplifiedNetworkSettings(long, boolean);
    method public java.util.List<android.telephony.CellInfo> getAllCellInfo();
    method public int getCalculatedPreferredNetworkType();
    method public int getCallState();
@@ -29014,8 +29012,6 @@ package android.telephony {
    method public java.lang.String getSimOperatorName();
    method public java.lang.String getSimSerialNumber();
    method public int getSimState();
    method public boolean getSimplifiedNetworkSettingsEnabled();
    method public boolean getSimplifiedNetworkSettingsEnabled(long);
    method public java.lang.String getSubscriberId();
    method public java.lang.String getVoiceMailAlphaTag();
    method public java.lang.String getVoiceMailNumber();
+4 −0
Original line number Diff line number Diff line
@@ -3393,6 +3393,7 @@ public class TelephonyManager {
     * Or the calling app has carrier privileges. @see #hasCarrierPrivileges
     *
     * @param enable true means enabling the simplified UI.
     * @hide
     */
    public void enableSimplifiedNetworkSettings(boolean enable) {
        enableSimplifiedNetworkSettings(getDefaultSubscription(), enable);
@@ -3408,6 +3409,7 @@ public class TelephonyManager {
     *
     * @param subId for which the simplified UI should be enabled or disabled.
     * @param enable true means enabling the simplified UI.
     * @hide
     */
    public void enableSimplifiedNetworkSettings(long subId, boolean enable) {
        try {
@@ -3424,6 +3426,7 @@ public class TelephonyManager {
     *   {@link android.Manifest.permission#READ_PHONE_STATE READ_PHONE_STATE}
     *
     * @return true if the simplified UI is enabled.
     * @hide
     */
    public boolean getSimplifiedNetworkSettingsEnabled() {
        return getSimplifiedNetworkSettingsEnabled(getDefaultSubscription());
@@ -3437,6 +3440,7 @@ public class TelephonyManager {
     *
     * @param subId for which the simplified UI should be enabled or disabled.
     * @return true if the simplified UI is enabled.
     * @hide
     */
    public boolean getSimplifiedNetworkSettingsEnabled(long subId) {
        try {