2018-03-03 01:10:13 +01:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
2022-02-04 14:06:07 +01:00
|
|
|
ext {
|
2022-02-04 16:53:04 +01:00
|
|
|
compose_version = '1.2.0-alpha02'
|
2022-02-04 17:06:26 +01:00
|
|
|
koltin_version = '1.6.10'
|
2022-02-04 14:06:07 +01:00
|
|
|
room_version = "2.4.1"
|
|
|
|
}
|
2018-03-03 01:10:13 +01:00
|
|
|
repositories {
|
|
|
|
google()
|
2022-01-01 01:53:43 +01:00
|
|
|
mavenCentral()
|
2018-03-03 01:10:13 +01:00
|
|
|
}
|
|
|
|
dependencies {
|
2022-02-08 23:00:28 +01:00
|
|
|
classpath 'com.android.tools.build:gradle:7.1.1'
|
2022-02-04 17:06:26 +01:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$koltin_version"
|
2022-02-04 14:06:07 +01:00
|
|
|
classpath "com.google.dagger:hilt-android-gradle-plugin:2.38.1"
|
2018-03-03 01:10:13 +01:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
2022-02-04 14:06:07 +01:00
|
|
|
}
|