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