-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
41 lines (38 loc) · 1.32 KB
/
build.gradle
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
39
40
41
buildscript {
ext {
kotlin_version = '2.0.20'
androidx_core_version = '1.13.1'
androidx_viewmodel_version = '2.8.6'
androidx_runtime_version = '2.8.4'
androidx_navigation_version = '2.8.0'
splash_screen_version = '1.0.1'
appcompat_version = '1.7.0'
material_version = '1.12.0'
coroutines_version = '1.8.1'
ktor_version = '2.3.12'
okhttp_interceptor_version = '4.12.0'
kotlinx_datetime_version = '0.6.1'
koin_android_version = '3.5.6'
koin_android_compose_version = '3.5.6'
koin_test_version = '3.5.6'
androidx_security_version = '1.0.0'
kotlinx_serialization_version = '1.7.2'
coil_version = '2.7.0'
compose_ui_version = '1.6.8'
compose_material3_version = '1.3.0'
compose_material_icons_versin = '1.7.0'
activity_compose_version = '1.9.2'
lottie_version = '6.5.2'
junit_test_version = '4.13.2'
androidx_junit_test_version = '1.2.1'
androidx_espresso_core = '3.6.1'
}
}
plugins {
id 'com.android.application' version '8.6.0' apply false
id 'com.android.library' version '8.6.0' apply false
id 'org.jetbrains.kotlin.android' version "$kotlin_version" apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}