blob: 84f82593e9071706e581592822ba187b86523b55 [file] [log] [blame]
Dirk Vogtdca11792017-07-28 13:58:49 +02001// Top-level build file where you can add configuration options common to all sub-projects/modules.
2
3buildscript {
4 repositories {
5 jcenter()
Karsten Tausche170581d2018-06-05 16:09:51 +02006 google()
Dirk Vogtdca11792017-07-28 13:58:49 +02007 }
8 dependencies {
Eduardo Pinar Menoyoaa9deb52020-03-26 14:02:47 +01009 classpath 'com.android.tools.build:gradle:4.1.2'
Dirk Vogtdca11792017-07-28 13:58:49 +020010
11 // NOTE: Do not place your application dependencies here; they belong
12 // in the individual module build.gradle files
13 }
14}
15
16allprojects {
17 repositories {
18 jcenter()
Karsten Tausche170581d2018-06-05 16:09:51 +020019 google()
Dirk Vogtdca11792017-07-28 13:58:49 +020020 }
21}
22
23task clean(type: Delete) {
24 delete rootProject.buildDir
25}