Created
February 15, 2022 02:27
-
-
Save andreas-kkday/8b6ab9c1a62b5d3b435ef063ebd0a0c5 to your computer and use it in GitHub Desktop.
lint parameter from gradle command line
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
| android { | |
| lintOptions { | |
| disable 'InvalidPackage', 'IconMissingDensityFolder', 'ResourceType' | |
| // Disable this check temporally | |
| enable 'ValidFragment' | |
| abortOnError project.hasProperty("abortOnLintError") ? project.getProperty("abortOnLintError").toBoolean() : true | |
| } | |
| } |
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
| ./gradlew lint :app:lintDevelopDebug -PabortOnLintError=false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment