iconsole-android/build.gradle

26 lines
532 B
Groovy
Raw Normal View History

2017-04-26 16:36:32 +02:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
2018-07-06 14:37:37 +02:00
google()
2017-04-26 16:36:32 +02:00
}
dependencies {
2021-05-26 16:32:45 +02:00
classpath 'com.android.tools.build:gradle:4.1.3'
2017-04-26 16:36:32 +02:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
2018-07-06 14:37:37 +02:00
google()
2017-04-26 16:36:32 +02:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}