Slide 28
Slide 28 text
Custom Rule Structure
val ISSUE: Issue = Issue.create(
"V1StyleUsageDetector",
"Replace V1 styles with V2",
"V1 styles have been deprecated and " +
"you should use V2 styles for all TextView going forward",
Category.CORRECTNESS,
5,
Severity.ERROR,
Implementation(
V1StyleUsageDetector::class.java,
Scope.RESOURCE_FILE_SCOPE
)
)