Skip to content

Commit d54c6f4

Browse files
committed
chore: upgrade Lint API
1 parent 9c6c5cf commit d54c6f4

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

buildSrc/src/main/kotlin/Config.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ object Config {
8686
}
8787

8888
object Lint {
89-
private const val version = "26.5.0"
89+
private const val version = "30.0.0"
9090

9191
const val api = "com.android.tools.lint:lint-api:$version"
9292
const val tests = "com.android.tools.lint:lint-tests:$version"

lint/src/main/java/com/firebaseui/lint/LintIssueRegistry.kt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package com.firebaseui.lint
22

33
import com.android.tools.lint.client.api.IssueRegistry
4+
import com.android.tools.lint.client.api.Vendor
45

56
/**
67
* Registry for custom FirebaseUI lint checks.
@@ -13,4 +14,11 @@ class LintIssueRegistry : IssueRegistry() {
1314
FirestoreRecyclerAdapterLifecycleDetector.ISSUE_MISSING_LISTENING_START_METHOD,
1415
FirestoreRecyclerAdapterLifecycleDetector.ISSUE_MISSING_LISTENING_STOP_METHOD
1516
)
17+
18+
override val vendor = Vendor(
19+
vendorName = "FirebaseUI Android",
20+
identifier = "com.firebaseui.lint",
21+
feedbackUrl = "https://github.com/firebase/FirebaseUI-Android",
22+
contact = "https://github.com/firebase/FirebaseUI-Android"
23+
)
1624
}

0 commit comments

Comments
 (0)