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

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

Snap for 12153359 from 172ae892 to 24Q4-release

Change-Id: I2fbc8032631ec748139fec8be12243b3b8084960
parents f3f72dbf 172ae892
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -34161,6 +34161,7 @@ package android.os {
    field public static final int USAGE_CLASS_UNKNOWN = 0; // 0x0
    field public static final int USAGE_COMMUNICATION_REQUEST = 65; // 0x41
    field public static final int USAGE_HARDWARE_FEEDBACK = 50; // 0x32
    field @FlaggedApi("android.os.vibrator.vibration_attribute_ime_usage_api") public static final int USAGE_IME_FEEDBACK = 82; // 0x52
    field public static final int USAGE_MEDIA = 19; // 0x13
    field public static final int USAGE_NOTIFICATION = 49; // 0x31
    field public static final int USAGE_PHYSICAL_EMULATION = 34; // 0x22
+2 −4
Original line number Diff line number Diff line
@@ -189,12 +189,10 @@ public final class Person implements Parcelable {
     */
    public void visitUris(@NonNull Consumer<Uri> visitor) {
        visitor.accept(getIconUri());
        if (Flags.visitPersonUri()) {
        if (mUri != null && !mUri.isEmpty()) {
            visitor.accept(Uri.parse(mUri));
        }
    }
    }

    /** Builder for the immutable {@link Person} class. */
    public static class Builder {
+7 −0
Original line number Diff line number Diff line
@@ -83,6 +83,13 @@ flag {
    is_fixed_read_only: true
}

flag {
     namespace: "virtual_devices"
     name: "enforce_remote_device_opt_out_on_all_virtual_displays"
     description: "Respect canDisplayOnRemoteDevices on all virtual displays"
     bug: "338973239"
}

flag {
    namespace: "virtual_devices"
    name: "virtual_display_multi_window_mode_support"
+1 −1
Original line number Diff line number Diff line
@@ -617,7 +617,7 @@ public class ActivityInfo extends ComponentInfo implements Parcelable {
     */
    public static final int FLAG_ENABLE_VR_MODE = 0x8000;
    /**
     * Bit in {@link #flags} indicating if the activity can be displayed on a remote device.
     * Bit in {@link #flags} indicating if the activity can be displayed on a virtual display.
     * Corresponds to {@link android.R.attr#canDisplayOnRemoteDevices}
     * @hide
     */
+10 −0
Original line number Diff line number Diff line
@@ -359,3 +359,13 @@ flag {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
  name: "show_different_creation_error_for_unsupported_devices"
  namespace: "profile_experiences"
  description: "On private space create error due to child account added/fully managed user show message with link to the Help Center to find out more."
  bug: "340130375"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}
Loading