2015-09-24 11:27:43 -04:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
2020-01-28 22:48:02 -05:00
|
|
|
plugins {
|
|
|
|
id("com.github.ben-manes.versions") version "0.27.0"
|
|
|
|
}
|
2015-09-24 11:27:43 -04:00
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
2017-10-28 10:39:34 -04:00
|
|
|
google()
|
2018-11-17 04:15:03 -05:00
|
|
|
jcenter()
|
2015-09-24 11:27:43 -04:00
|
|
|
}
|
|
|
|
dependencies {
|
2020-02-25 18:31:41 -05:00
|
|
|
classpath("com.android.tools.build:gradle:3.6.0")
|
2020-01-28 22:48:02 -05:00
|
|
|
classpath("com.github.zellius:android-shortcut-gradle-plugin:0.1.2")
|
|
|
|
classpath("com.google.gms:google-services:4.3.3")
|
2015-09-24 11:27:43 -04:00
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2017-10-28 10:10:51 -04:00
|
|
|
google()
|
2020-01-28 22:48:02 -05:00
|
|
|
maven { setUrl("https://www.jitpack.io") }
|
2019-03-14 12:32:08 -04:00
|
|
|
jcenter()
|
2015-09-24 11:27:43 -04:00
|
|
|
}
|
2016-10-11 11:04:47 -04:00
|
|
|
}
|
2020-01-28 22:48:02 -05:00
|
|
|
|
|
|
|
tasks.register("clean", Delete::class) {
|
|
|
|
delete(rootProject.buildDir)
|
|
|
|
}
|