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

Commit 5c30220a authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 7194211 from 6b3fb2d7 to sc-v2-release

Change-Id: I9e601abaa57b909114b9e7dc815fe06966cd3ed0
parents 188c2cea 6b3fb2d7
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -59,7 +59,5 @@ enum AcquiredInfo {
  VENDOR = 22,
  FIRST_FRAME_RECEIVED = 23,
  DARK_GLASSES_DETECTED = 24,
  FACE_COVERING_DETECTED = 25,
  EYES_NOT_VISIBLE = 26,
  MOUTH_NOT_VISIBLE = 27,
  MOUTH_COVERING_DETECTED = 25,
}
+2 −15
Original line number Diff line number Diff line
@@ -230,18 +230,5 @@ enum AcquiredInfo {
     * A face mask or face covering detected. This can be useful for providing relevant feedback to
     * the user and enabling an alternative authentication logic if the implementation supports it.
     */
    FACE_COVERING_DETECTED = 25,

    /**
     * Either one or both eyes are not visible in the frame. Prefer to use DARK_GLASSES_DETECTED if
     * the eyes are not visible due to dark glasses.
     */
    EYES_NOT_VISIBLE = 26,

    /**
     * The mouth is not visible in the frame. Prefer to use MASK_DETECTED if the mouth is not
     * visible due to a mask.
     */
    MOUTH_NOT_VISIBLE = 27,
    MOUTH_COVERING_DETECTED = 25,
}
+7 −0
Original line number Diff line number Diff line
@@ -256,6 +256,13 @@
    </hal>
    <hal format="aidl" optional="true">
        <name>android.hardware.identity</name>
        <!--
          b/178458001: identity V2 is introduced in R, but Android R VINTF does not support AIDL
          versions. Hence, we only specify identity V2 in compatibility_matrix.5.xml in Android S+
          branches. In Android R branches, the matrix implicitly specifies V1.
          SingleManifestTest.ManifestAidlHalsServed has an exemption for this.
        -->
        <version>1-2</version>
        <interface>
            <name>IIdentityCredentialStore</name>
            <instance>default</instance>
+1 −1
Original line number Diff line number Diff line
@@ -33,7 +33,7 @@
package android.hardware.gnss;
@VintfStability
parcelable CorrelationVector {
  int frequencyOffsetMps;
  double frequencyOffsetMps;
  double samplingWidthM;
  double samplingStartM;
  int[] magnitude;
+2 −3
Original line number Diff line number Diff line
@@ -22,11 +22,10 @@ package android.hardware.gnss;
 */
@VintfStability
parcelable CorrelationVector {

    /**
     * Frequency offset from reported pseudorange rate for this Correlation Vector.
     */
    int frequencyOffsetMps;
    double frequencyOffsetMps;

    /**
     * Space between correlation samples in meters.
Loading