Simple-File-Manager/build.gradle

26 lines
590 B
Groovy
Raw Normal View History

2016-07-12 22:07:49 +02:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
2017-11-09 20:33:59 +01:00
classpath 'com.android.tools.build:gradle:3.0.0'
2016-07-12 22:07:49 +02:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
2017-10-22 17:20:16 +02:00
maven { url "https://maven.google.com" }
2016-07-12 22:07:49 +02:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}