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

Commit 0965ee93 authored by Amit Mahajan's avatar Amit Mahajan Committed by Automerger Merge Worker
Browse files

Update API documentation per api-council feedback. am: 69cf3f0f

Change-Id: Idb7658b12171e8fdb8eb465cf224be7877bffa34
parents ab38a06f 69cf3f0f
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -1900,7 +1900,6 @@ package android.content.pm {
    field @Deprecated public static final int MASK_PERMISSION_FLAGS = 255; // 0xff
    field public static final int MATCH_ANY_USER = 4194304; // 0x400000
    field public static final int MATCH_FACTORY_ONLY = 2097152; // 0x200000
    field public static final int MATCH_HIDDEN_UNTIL_INSTALLED_COMPONENTS = 536870912; // 0x20000000
    field public static final int MATCH_INSTANT = 8388608; // 0x800000
    field public static final int RESTRICTION_HIDE_FROM_SUGGESTIONS = 1; // 0x1
    field public static final int RESTRICTION_HIDE_NOTIFICATIONS = 2; // 0x2
@@ -6805,7 +6804,6 @@ package android.provider {
    field public static final String AUTOFILL_USER_DATA_MAX_USER_DATA_SIZE = "autofill_user_data_max_user_data_size";
    field public static final String AUTOFILL_USER_DATA_MAX_VALUE_LENGTH = "autofill_user_data_max_value_length";
    field public static final String AUTOFILL_USER_DATA_MIN_VALUE_LENGTH = "autofill_user_data_min_value_length";
    field public static final String CARRIER_APPS_HANDLED = "carrier_apps_handled";
    field public static final String COMPLETED_CATEGORY_PREFIX = "suggested.completed_category.";
    field public static final String DOZE_ALWAYS_ON = "doze_always_on";
    field public static final String HUSH_GESTURE_USED = "hush_gesture_used";
+0 −1
Original line number Diff line number Diff line
@@ -548,7 +548,6 @@ public abstract class PackageManager {
     * Internal {@link PackageInfo} flag used to indicate that a package is a hidden system app.
     * @hide
     */
    @SystemApi
    public static final int MATCH_HIDDEN_UNTIL_INSTALLED_COMPONENTS =  0x20000000;

    /**
+0 −1
Original line number Diff line number Diff line
@@ -8612,7 +8612,6 @@ public final class Settings {
         *
         * @hide
         */
        @SystemApi
        public static final String CARRIER_APPS_HANDLED = "carrier_apps_handled";
        /**
+3 −3
Original line number Diff line number Diff line
@@ -2768,7 +2768,7 @@ public final class SmsManager {
                        getSubscriptionId(), null);
            }
        } catch (RemoteException ex) {
            // ignore it
            throw new RuntimeException(ex);
        }
        return smsc;
    }
@@ -2790,7 +2790,7 @@ public final class SmsManager {
     * </p>
     *
     * @param smsc the SMSC address string.
     * @return true for success, false otherwise.
     * @return true for success, false otherwise. Failure can be due modem returning an error.
     */
    @SuppressAutoDoc // for carrier privileges and default SMS application.
    @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE)
@@ -2802,7 +2802,7 @@ public final class SmsManager {
                        smsc, getSubscriptionId(), null);
            }
        } catch (RemoteException ex) {
            // ignore it
            throw new RuntimeException(ex);
        }
        return false;
    }