2019-06-29 03:35:14 +03:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2021-02-26 14:41:57 +03:00
|
|
|
ext {
|
2021-10-26 08:15:49 +03:00
|
|
|
kotlin_version = '1.5.31'
|
2021-03-26 20:13:29 +03:00
|
|
|
lifecycle_version = '2.3.1'
|
2021-10-26 08:15:49 +03:00
|
|
|
hilt_version = '2.39.1'
|
2021-03-26 20:13:29 +03:00
|
|
|
lifecycle_version = '2.3.1'
|
2021-02-26 14:41:57 +03:00
|
|
|
}
|
2021-02-01 00:11:26 +03:00
|
|
|
|
2019-06-29 03:35:14 +03:00
|
|
|
repositories {
|
|
|
|
google()
|
2021-02-01 00:11:26 +03:00
|
|
|
mavenCentral()
|
2019-06-29 03:35:14 +03:00
|
|
|
}
|
|
|
|
dependencies {
|
2021-12-07 00:57:27 +03:00
|
|
|
classpath 'com.android.tools.build:gradle:7.1.0-beta04'
|
2019-12-02 16:39:08 +03:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2021-02-01 00:11:26 +03:00
|
|
|
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
|
2019-06-29 16:35:24 +03:00
|
|
|
|
2019-06-29 03:35:14 +03:00
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2021-02-26 14:41:57 +03:00
|
|
|
mavenCentral()
|
2019-06-29 03:35:14 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|