2018-11-15 12:06:12 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
2017-02-21 10:55:48 +00:00
|
|
|
|
2014-10-30 15:42:15 +00:00
|
|
|
buildscript {
|
2021-04-01 11:40:37 +00:00
|
|
|
ext.kotlin_version = '1.4.32'
|
2020-03-29 12:14:04 +00:00
|
|
|
|
2018-02-02 15:04:30 +00:00
|
|
|
repositories {
|
2018-11-15 12:06:12 +00:00
|
|
|
google()
|
2018-02-02 15:04:30 +00:00
|
|
|
jcenter()
|
2018-11-26 10:18:15 +00:00
|
|
|
maven {
|
|
|
|
url "https://plugins.gradle.org/m2/"
|
|
|
|
}
|
2021-04-01 11:40:37 +00:00
|
|
|
maven { url "https://www.jitpack.io" } // for com.github.chrisbanes:PhotoView
|
2018-02-02 15:04:30 +00:00
|
|
|
}
|
|
|
|
dependencies {
|
2021-06-09 12:09:40 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:4.2.2'
|
2021-02-05 10:07:19 +00:00
|
|
|
classpath 'com.google.gms:google-services:4.3.5'
|
2020-03-29 12:14:04 +00:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
classpath "org.jlleitschuh.gradle:ktlint-gradle:9.1.1"
|
2021-04-01 11:40:37 +00:00
|
|
|
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.5.2'
|
2017-02-24 10:30:13 +00:00
|
|
|
}
|
2014-10-30 15:42:15 +00:00
|
|
|
}
|
2017-02-24 10:30:13 +00:00
|
|
|
|
2017-04-27 13:14:17 +00:00
|
|
|
allprojects {
|
2018-02-02 15:04:30 +00:00
|
|
|
repositories {
|
|
|
|
google()
|
2018-11-15 12:06:12 +00:00
|
|
|
jcenter()
|
2021-04-01 11:40:37 +00:00
|
|
|
maven { url "https://www.jitpack.io" } // for com.github.chrisbanes:PhotoView
|
2018-02-02 15:04:30 +00:00
|
|
|
}
|
2017-04-27 13:14:17 +00:00
|
|
|
}
|
|
|
|
|
2018-11-15 12:06:12 +00:00
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
2017-04-04 12:17:01 +00:00
|
|
|
}
|