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 {
|
2023-01-24 21:08:27 +03:00
|
|
|
kotlin_version = '1.7.21'
|
|
|
|
hilt_version = '2.44.2'
|
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()
|
2022-08-04 02:25:29 +03:00
|
|
|
maven { url 'https://www.jitpack.io' }
|
2019-06-29 03:35:14 +03:00
|
|
|
}
|
2022-08-17 13:28:31 +03:00
|
|
|
|
2019-06-29 03:35:14 +03:00
|
|
|
dependencies {
|
2022-08-17 13:28:31 +03:00
|
|
|
classpath 'com.android.tools.build:gradle:7.2.2'
|
2019-12-02 16:39:08 +03:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-24 21:08:27 +03:00
|
|
|
plugins {
|
|
|
|
id 'com.google.dagger.hilt.android' version "$hilt_version" apply false
|
|
|
|
}
|
|
|
|
|
2019-06-29 03:35:14 +03:00
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2021-02-26 14:41:57 +03:00
|
|
|
mavenCentral()
|
2022-08-04 02:25:29 +03:00
|
|
|
maven { url 'https://www.jitpack.io' }
|
2019-06-29 03:35:14 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-24 21:08:27 +03:00
|
|
|
tasks.register('clean') {
|
2019-06-29 03:35:14 +03:00
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|