In my android app, it takes approximately more than 3 minutes to build the app. If I browse through the build tasks one by one, I noticed that app:lintDebug takes the considerable amount of minutes (more than 1 minute)
It is quite annoying and i was aware to disable lint check , by putting these settings
lintOptions { tasks.lint.enabled = false quiet false abortOnError false ignoreWarnings false warningsAsErrors true checkReleaseBuilds false } Also in the top of the file
tasks.whenTaskAdded { task -> if (task.name == "lint") { task.enabled = false } } Also I have checked the offline Gradle build aswel.
But yet
Is there any others settings that i need to put to stop this?
