// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { google() jcenter() maven { url 'https://jitpack.io' } maven { url 'https://maven.fabric.io/public' } } dependencies { classpath 'com.android.tools.build:gradle:4.0.2' classpath 'com.jakewharton:butterknife-gradle-plugin:10.2.1' classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5' classpath "org.jetbrains.dokka:dokka-gradle-plugin:1.4.30" classpath 'io.fabric.tools:gradle:1.31.2' } } allprojects { repositories { google() jcenter() maven { url "https://jitpack.io" } flatDir { dirs 'libs' } } } task clean(type: Delete) { delete rootProject.buildDir }