2018-12-07 20:11:50 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
2019-01-07 21:47:47 +00:00
|
|
|
classpath Deps.tools_androidgradle
|
|
|
|
classpath Deps.tools_kotlingradle
|
2018-12-07 20:11:50 +00:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2019-01-15 18:47:38 +00:00
|
|
|
maven {
|
|
|
|
url "https://snapshots.maven.mozilla.org/maven2"
|
|
|
|
}
|
2019-01-07 21:47:47 +00:00
|
|
|
maven {
|
|
|
|
url "https://maven.mozilla.org/maven2"
|
|
|
|
}
|
2018-12-07 20:11:50 +00:00
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
2019-01-15 18:47:38 +00:00
|
|
|
}
|
2019-01-24 20:10:16 +00:00
|
|
|
|
|
|
|
task showMeCache << {
|
|
|
|
configurations.compile.each { println it }
|
|
|
|
}
|
|
|
|
|
|
|
|
|