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 {
|
2019-05-16 03:38:29 +00:00
|
|
|
ext.kotlin_version = '1.3.31'
|
2017-07-25 04:37:23 +00:00
|
|
|
repositories {
|
|
|
|
jcenter()
|
2017-12-24 01:12:43 +00:00
|
|
|
google()
|
2019-03-20 01:50:01 +00:00
|
|
|
maven {
|
|
|
|
url 'https://maven.fabric.io/public'
|
|
|
|
}
|
2017-07-25 04:37:23 +00:00
|
|
|
}
|
|
|
|
dependencies {
|
2019-07-25 01:33:34 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:3.4.2'
|
2019-02-10 19:12:51 +00:00
|
|
|
classpath 'com.google.gms:google-services:4.2.0'
|
2019-03-20 01:50:01 +00:00
|
|
|
classpath 'io.fabric.tools:gradle:1.26.1'
|
2019-05-16 03:38:29 +00:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2017-07-25 04:37:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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' }
|
2019-05-16 03:38:29 +00:00
|
|
|
google()
|
2017-07-25 04:37:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|