https://kotlinlang.org logo
d

Dico

01/27/2019, 6:25 PM
Copy code
Execution failed for task ':client-android:lint'.
> Configuration with name 'compileClasspath' not found.
I ended up doing this:
Copy code
tasks {
  val lint by getting
  lint.enabled = false
}
this worked, unlike creating a configuration named "compileClasspath". But it's not a good solution, is anyone familiar with this problem?