-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
38 lines (31 loc) · 1.13 KB
/
build.gradle
File metadata and controls
38 lines (31 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
buildscript {
ext {
compose_version = "1.8.2"
compose_compiler_version = "1.5.15"
kotlin_version = "2.1.21"
ksp_version = "$kotlin_version-2.0.1"
compose_m3_version = "1.3.2"
room_version = "2.7.1"
nav_version = "2.9.0"
hilt_version = "2.56.2"
retrofit_version = "3.0.0"
coil_version = "2.7.0"
moshix_version = "0.30.0"
accompanist_version = "0.36.0"
}
dependencies {
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
}
}
plugins {
id 'com.android.application' version '8.10.0' apply false
id 'com.android.library' version '8.10.0' apply false
id 'org.jetbrains.kotlin.android' version "$kotlin_version" apply false
id 'org.jetbrains.kotlin.plugin.compose' version "$kotlin_version" apply false
id 'org.jetbrains.kotlin.plugin.serialization' version "$kotlin_version" apply false
id 'com.google.devtools.ksp' version "$ksp_version" apply false
// id 'dagger.hilt.android.plugin' version "$hilt_version" apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}