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

Commit 25d83d0f authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 11650815 from f788d809 to 24Q3-release

Change-Id: I60e5da3e2f5c193323962faca1d27cd7e512d514
parents cec8535c f788d809
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -321,7 +321,7 @@ package android {
    field public static final String RECEIVE_EMERGENCY_BROADCAST = "android.permission.RECEIVE_EMERGENCY_BROADCAST";
    field @FlaggedApi("android.permission.flags.voice_activation_permission_apis") public static final String RECEIVE_SANDBOXED_DETECTION_TRAINING_DATA = "android.permission.RECEIVE_SANDBOXED_DETECTION_TRAINING_DATA";
    field @FlaggedApi("android.permission.flags.voice_activation_permission_apis") public static final String RECEIVE_SANDBOX_TRIGGER_AUDIO = "android.permission.RECEIVE_SANDBOX_TRIGGER_AUDIO";
    field @FlaggedApi("com.android.server.notification.flags.redact_otp_notifications_from_untrusted_listeners") public static final String RECEIVE_SENSITIVE_NOTIFICATIONS = "android.permission.RECEIVE_SENSITIVE_NOTIFICATIONS";
    field @FlaggedApi("android.view.flags.sensitive_content_app_protection_api") public static final String RECEIVE_SENSITIVE_NOTIFICATIONS = "android.permission.RECEIVE_SENSITIVE_NOTIFICATIONS";
    field public static final String RECEIVE_WIFI_CREDENTIAL_CHANGE = "android.permission.RECEIVE_WIFI_CREDENTIAL_CHANGE";
    field public static final String RECORD_BACKGROUND_AUDIO = "android.permission.RECORD_BACKGROUND_AUDIO";
    field public static final String RECOVERY = "android.permission.RECOVERY";
+7 −0
Original line number Diff line number Diff line
@@ -3907,6 +3907,13 @@ public class Notification implements Parcelable
        return mLargeIcon;
    }
    /**
     * @hide
     */
    public boolean hasAppProvidedWhen() {
        return when != 0 && when != creationTime;
    }
    /**
     * @hide
     */
+7 −0
Original line number Diff line number Diff line
@@ -82,3 +82,10 @@ flag {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
  name: "sort_section_by_time"
  namespace: "systemui"
  description: "Changes notification sort order to be by time within a section"
  bug: "330193582"
}
 No newline at end of file
+13 −0
Original line number Diff line number Diff line
@@ -74,6 +74,11 @@ public final class CredentialManager {
                PROVIDER_FILTER_ALL_PROVIDERS,
                PROVIDER_FILTER_SYSTEM_PROVIDERS_ONLY,
                PROVIDER_FILTER_USER_PROVIDERS_ONLY,
                // By default the returned list of providers will not include any providers that
                // have been hidden by device policy. However, there are some cases where we want
                // them to show up (e.g. settings) so this will return the list of providers with
                // the hidden ones included.
                PROVIDER_FILTER_USER_PROVIDERS_INCLUDING_HIDDEN,
            })
    @Retention(RetentionPolicy.SOURCE)
    public @interface ProviderFilter {}
@@ -99,6 +104,14 @@ public final class CredentialManager {
     */
    @TestApi public static final int PROVIDER_FILTER_USER_PROVIDERS_ONLY = 2;

    /**
     * Returns user credential providers only. This will include providers that
     * have been disabled by the device policy.
     *
     * @hide
     */
    public static final int PROVIDER_FILTER_USER_PROVIDERS_INCLUDING_HIDDEN = 3;

    private final Context mContext;
    private final ICredentialManager mService;

+16 −0
Original line number Diff line number Diff line
@@ -1265,6 +1265,22 @@ public final class Settings {
    public static final String ACTION_BLUETOOTH_PAIRING_SETTINGS =
            "android.settings.BLUETOOTH_PAIRING_SETTINGS";
    /**
     * Activity Action: Show settings to allow pairing hearing devices.
     * <p>
     * In some cases, a matching Activity may not exist, so ensure you
     * safeguard against this.
     * <p>
     * Input: Nothing.
     * <p>
     * Output: Nothing.
     *
     * @hide
     */
    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
    public static final String ACTION_HEARING_DEVICE_PAIRING_SETTINGS =
            "android.settings.HEARING_DEVICES_PAIRING_SETTINGS";
    /**
     * Activity Action: Show settings to configure input methods, in particular
     * allowing the user to enable input methods.
Loading