Skip to content

Commit 0a95998

Browse files
romtsnclaude
andcommitted
fix(lint): suppress OldTargetApi for uitest-android module
Lint 8.13.1 (set via android.experimental.lint.version) expects targetSdk 37 but we target 36. This is a test-only module so suppressing is safe. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 3bfe40d commit 0a95998

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

sentry-android-integration-tests/sentry-uitest-android/build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,8 @@ android {
7474
lint {
7575
warningsAsErrors = true
7676
checkDependencies = true
77+
// Suppress OldTargetApi: lint 8.13.1 expects API 37 but we target 36
78+
disable += "OldTargetApi"
7779

7880
// We run a full lint analysis as build part in CI, so skip vital checks for assemble tasks.
7981
checkReleaseBuilds = false

0 commit comments

Comments
 (0)