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