2018-08-01 02:01:15 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2020-08-23 02:19:42 +00:00
|
|
|
ext.acra_version = '5.7.0'
|
2020-05-31 01:19:41 +00:00
|
|
|
ext.dagger = '2.23.1'
|
2020-08-23 02:19:42 +00:00
|
|
|
ext.hyperion = '0.9.27'
|
2020-12-21 13:22:35 +00:00
|
|
|
ext.kotlin_version = '1.4.21'
|
2020-08-23 05:21:43 +00:00
|
|
|
ext.lifecycle_version = "2.2.0"
|
2020-05-31 01:19:41 +00:00
|
|
|
ext.moshi = '1.8.0'
|
|
|
|
ext.retrofit = '2.6.0'
|
|
|
|
ext.room_version = "2.2.5"
|
2018-08-01 02:01:15 +00:00
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
2020-12-21 13:22:35 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:4.1.1'
|
2018-08-01 02:01:15 +00:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
2018-11-02 01:12:03 +00:00
|
|
|
maven { url "https://jitpack.io" }
|
2019-01-27 04:10:03 +00:00
|
|
|
maven {
|
|
|
|
url 'https://maven.google.com/'
|
|
|
|
}
|
2018-08-01 02:01:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|