I have upgraded Android Gradle Plugin to 7.4.
Now getting warning lintOptions are deprecated.
What alternative is to be used for this?
I have upgraded Android Gradle Plugin to 7.4.
Now getting warning lintOptions are deprecated.
What alternative is to be used for this?
Copyright © 2021 Jogjafile Inc.

We can use the new
Lintblock.The old
lintOptionsblock is deprecated in Android Gradle Plugin7.2and replaced by the newLintblock. We can simply replace it and use it in the app-levelbuild.gradlefile like the below example.Groovey Example:
Kotlin DSL Example:
Most of the properties are the same as previously but you can check Summary, Public properties, and Configure lint options with Gradle.