Skip to content

Commit fbb17f3

Browse files
Treehugger RobotGerrit Code Review
Treehugger Robot
authored and
Gerrit Code Review
committed
Merge "Enable quirk detector for 📷camera-viewfinder" into androidx-main
2 parents a967b37 + 1eb6c52 commit fbb17f3

File tree

6 files changed

+22
-35
lines changed

6 files changed

+22
-35
lines changed

camera/camera-viewfinder/build.gradle

+4
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,10 @@ android {
6666
}
6767

6868
testOptions.unitTests.includeAndroidResources = true
69+
70+
lintOptions {
71+
enable 'CameraXQuirksClassDetector'
72+
}
6973
}
7074

7175
androidx {

camera/camera-viewfinder/src/main/java/androidx/camera/viewfinder/internal/quirk/QuirkSummary.java

-27
This file was deleted.

camera/camera-viewfinder/src/main/java/androidx/camera/viewfinder/internal/quirk/SurfaceViewNotCroppedByParentQuirk.java

+7-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,13 @@
2323
/**
2424
* A quirk where a scaled up SurfaceView is not cropped by the parent View.
2525
*
26-
* <p> On certain Xiaomi devices, when the scale type is FILL_* and the preview is scaled up
27-
* to be larger than its parent, the SurfaceView is not cropped by its parent. As the result, the
28-
* preview incorrectly covers the neighboring UI elements. b/211370840
26+
* <p>QuirkSummary
27+
* Bug Id: 211370840
28+
* Description: On certain Xiaomi devices, when the scale type is FILL_* and the preview is
29+
* scaled up to be larger than its parent, the SurfaceView is not cropped by its
30+
* parent. As the result, the preview incorrectly covers the neighboring UI
31+
* elements.
32+
* Device(s): XIAOMI M2101K7AG
2933
*/
3034
@RequiresApi(21) // TODO(b/200306659): Remove and replace with annotation on package-info.java
3135
public class SurfaceViewNotCroppedByParentQuirk implements Quirk {

camera/camera-viewfinder/src/main/java/androidx/camera/viewfinder/internal/quirk/SurfaceViewStretchedQuirk.java

+5-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,11 @@
2323
/**
2424
* A quirk where SurfaceView is stretched.
2525
*
26-
* <p> On certain Samsung devices, transform APIs (e.g. View#setScaleX) do not work as intended.
27-
* b/129403806
26+
* <p>QuirkSummary
27+
* Bug Id: 129403806
28+
* Description: On certain Samsung devices, transform APIs (e.g. View#setScaleX) do not work
29+
* as intended.
30+
* Device(s): SAMSUNG F2Q Q2Q
2831
*/
2932
@RequiresApi(21) // TODO(b/200306659): Remove and replace with annotation on package-info.java
3033
public class SurfaceViewStretchedQuirk implements Quirk {

lint-checks/src/main/java/androidx/build/lint/CameraXQuirksClassDetector.kt

+5-2
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,12 @@ class CameraXQuirksClassDetector : Detector(), Detector.UastScanner {
5454
comments.forEach { sb.append(it.text) }
5555
val comment = sb.append("\n").toString()
5656

57-
if (!comment.contains("@QuirkSummary")) {
57+
if (!comment.contains("<p>QuirkSummary") ||
58+
!comment.contains("Bug Id:") ||
59+
!comment.contains("Description:") ||
60+
!comment.contains("Device(s):")) {
5861
val implForInsertion = """
59-
* @QuirkSummary
62+
* <p>QuirkSummary
6063
* Bug Id:
6164
* Description:
6265
* Device(s):

lint-checks/src/test/java/androidx/build/lint/CameraXQuirksClassDetectorTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class CameraXQuirksClassDetectorTest : AbstractLintDetectorTest(
3838
val expected = """
3939
src/androidx/CameraXMissingQuirkSummaryJava.java:22: Error: CameraX quirks should include this template in the javadoc:
4040
41-
* @QuirkSummary
41+
* <p>QuirkSummary
4242
* Bug Id:
4343
* Description:
4444
* Device(s):

0 commit comments

Comments
 (0)