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

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

Snap for 13304896 from abc51d17 to 25Q3-release

Change-Id: I950092e52943332efc194a876cafbe4349c2b5fe
parents 24fb844a abc51d17
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -529,6 +529,12 @@ java_aconfig_library {
    defaults: ["framework-minus-apex-aconfig-java-defaults"],
}

cc_aconfig_library {
    name: "com.android.internal.os_flags_c_lib",
    aconfig_declarations: "com.android.internal.os.flags-aconfig",
    host_supported: true,
}

// VirtualDeviceManager
cc_aconfig_library {
    name: "android.companion.virtualdevice.flags-aconfig-cc",
+10 −0
Original line number Diff line number Diff line
@@ -4933,6 +4933,16 @@ package android.hardware {
package android.hardware.biometrics {
  @FlaggedApi("android.hardware.biometrics.move_fm_api_to_bm") public final class BiometricEnrollmentStatus {
    method @IntRange(from=0) public int getEnrollmentCount();
  }
  public class BiometricManager {
    method @FlaggedApi("android.hardware.biometrics.move_fm_api_to_bm") @NonNull @RequiresPermission(android.Manifest.permission.SET_BIOMETRIC_DIALOG_ADVANCED) public java.util.Map<java.lang.Integer,android.hardware.biometrics.BiometricEnrollmentStatus> getEnrollmentStatus();
    field @FlaggedApi("android.hardware.biometrics.move_fm_api_to_bm") public static final int TYPE_FACE = 8; // 0x8
    field @FlaggedApi("android.hardware.biometrics.move_fm_api_to_bm") public static final int TYPE_FINGERPRINT = 2; // 0x2
  }
  public static interface BiometricManager.Authenticators {
    field @RequiresPermission(android.Manifest.permission.WRITE_DEVICE_CONFIG) public static final int BIOMETRIC_CONVENIENCE = 4095; // 0xfff
    field @RequiresPermission(android.Manifest.permission.WRITE_DEVICE_CONFIG) public static final int EMPTY_SET = 0; // 0x0
+8 −0
Original line number Diff line number Diff line
@@ -321,6 +321,14 @@ public class WallpaperManager {
    public static final String COMMAND_LOCKSCREEN_TAP =
            "android.wallpaper.lockscreen_tap";

    /**
     * Command for {@link #sendWallpaperCommand}: reported when the surface control that could be
     * used to transform the wallpaper is available
     * @hide
     */
    public static final String COMMAND_TRANSFORM_SURFACE_CONTROL =
            "android.wallpaper.transform_surface_control";

    /**
     * Extra passed back from setWallpaper() giving the new wallpaper's assigned ID.
     * @hide
+10 −0
Original line number Diff line number Diff line
@@ -432,3 +432,13 @@ flag {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
  name: "associate_disallow_grant_admin_with_permission"
  namespace: "supervision"
  description: "DISALLOW_GRANT_ADMIN restriction is currently not associated with any permission, causing null pointer exceptions when client try to add it."
  bug: "407776766"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}
+10 −0
Original line number Diff line number Diff line
@@ -33,6 +33,16 @@ flag {
  }
}

flag {
  name: "enable_wallpaper_transform_surface_control_command"
  namespace: "systemui"
  description: "Enables sending SurfaceControl to onCommand that could be used to transform the wallpaper"
  bug: "399077623"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
  name: "accurate_wallpaper_downsampling"
  namespace: "systemui"
Loading