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 {
|
2021-06-28 01:35:51 +00:00
|
|
|
ext.kotlin_version = '1.5.20'
|
2017-07-25 04:37:23 +00:00
|
|
|
repositories {
|
2017-12-24 01:12:43 +00:00
|
|
|
google()
|
2021-02-21 03:38:45 +00:00
|
|
|
mavenCentral()
|
|
|
|
maven {url 'https://plugins.gradle.org/m2/' }
|
2017-07-25 04:37:23 +00:00
|
|
|
}
|
|
|
|
dependencies {
|
2021-06-28 01:35:51 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:4.2.1'
|
|
|
|
classpath 'com.google.gms:google-services:4.3.8'
|
|
|
|
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.7.1'
|
2019-05-16 03:38:29 +00:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2021-02-21 04:07:10 +00:00
|
|
|
classpath "com.osacky.flank.gradle:fladle:0.14.1"
|
2017-07-25 04:37:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2021-02-21 03:38:45 +00:00
|
|
|
google()
|
|
|
|
mavenCentral()
|
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' }
|
2021-02-21 03:38:45 +00:00
|
|
|
maven {url 'https://plugins.gradle.org/m2/' }
|
2017-07-25 04:37:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|