2017-07-25 04:37:23 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath 'com.android.tools.build:gradle:2.3.3'
|
2017-08-07 22:54:18 +00:00
|
|
|
classpath 'me.tatarka:gradle-retrolambda:3.2.3'
|
2017-07-25 04:37:23 +00:00
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
2017-07-29 17:42:13 +00:00
|
|
|
maven {
|
|
|
|
url "https://s3.amazonaws.com/repo.commonsware.com"
|
|
|
|
}
|
2017-08-10 00:57:34 +00:00
|
|
|
maven { url 'https://maven.google.com' }
|
2017-07-25 04:37:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|