Created
July 11, 2020 22:30
-
-
Save jeremyrempel/8b012d12bc1a730bff8586dc4c7e863d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.github.jeremyrempel.applint | |
import com.android.tools.lint.client.api.IssueRegistry | |
import com.android.tools.lint.detector.api.CURRENT_API | |
/* | |
* The list of issues that will be checked when running <code>lint</code>. | |
*/ | |
@Suppress("UnstableApiUsage") | |
class MyIssueRegistry : IssueRegistry() { | |
override val issues = listOf( | |
AndroidLogImportDetector.ISSUE, | |
DeprecatedClassUsageDetector.ISSUE | |
) | |
override val api: Int | |
get() = CURRENT_API | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment