Hi! Have a question about for those who uses Detek...
# gradle
r
Hi! Have a question about for those who uses Detekt. This is how looks my root build.gradle script.
Copy code
apply from: 'dependencies.gradle'

buildscript {
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.1.2'
    }
}
I cannot introduce
plugins {}
block in the root gradle script and I cannot remove
apply from: 'dependencies.gradle'
either because dependencies.gradle has to be executed before module build.gradle script Can anybody tell what other options are to set up Detekt? Many thanks in advance