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 {
|
2022-12-20 17:41:21 +00:00
|
|
|
ext.compose = '1.3.1'
|
|
|
|
ext.dagger = '2.44'
|
2021-08-23 20:36:17 +00:00
|
|
|
ext.hyperion = '0.9.33'
|
2022-12-20 17:41:21 +00:00
|
|
|
ext.kotlin_version = '1.7.20'
|
2020-08-23 05:21:43 +00:00
|
|
|
ext.lifecycle_version = "2.2.0"
|
2021-08-23 20:36:17 +00:00
|
|
|
ext.moshi = '1.12.0'
|
2020-05-31 01:19:41 +00:00
|
|
|
ext.retrofit = '2.6.0'
|
|
|
|
ext.room_version = "2.2.5"
|
2018-08-01 02:01:15 +00:00
|
|
|
repositories {
|
|
|
|
google()
|
2021-08-23 20:36:17 +00:00
|
|
|
mavenCentral()
|
2018-08-01 02:01:15 +00:00
|
|
|
}
|
|
|
|
dependencies {
|
2022-12-20 17:41:21 +00:00
|
|
|
classpath libs.bundles.plugins
|
2018-08-01 02:01:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2021-08-23 20:36:17 +00:00
|
|
|
mavenCentral()
|
2018-08-01 02:01:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|