// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    dependencies {
        // Add this line
        classpath 'com.android.tools.build:gradle:4.0.1'
        classpath 'com.google.gms:google-services:4.0.1'
        classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.8'
        classpath 'de.undercouch:gradle-download-task:4.1.1'
    }
}

task clean {
    doLast {
        println('ignore clean task in root project')
        def bdir = new File('./build')
        if (bdir.exists()) {
            bdir.deleteDir()
        }
    }
}
