-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
51 lines (48 loc) · 1.45 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
42
43
44
45
46
47
48
49
50
51
buildscript {
ext {
kotlin_version = '1.9.10'
appcompat_version = '1.7.0'
cons_layout_version = '2.1.4'
recyclerview_version = '1.3.2'
compose_version = '1.5.3'
material_version = '1.12.0'
paging_version = '3.1.1'
paging_compose_version = '1.0.0-alpha14'
nav_version = '2.7.7'
retrofit_version = '2.9.0'
moshi_version = '1.12.0'
glide_version = '4.12.0'
glide_accompanist_version = '1.3.8'
hilt_version = '2.51'
lifecycle_version = '1.1.0'
lifecycle_ktx_version = '2.8.4'
coroutines_version = '1.7.1'
androidx_test_core_version = '1.4.1-alpha03'
androidx_test_ext_kotlin_runner_version = '1.1.3'
lottie_version = '6.1.0'
lottie_compose_version = '5.2.0'
}
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.1.4'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
}
}
plugins {
id 'com.google.devtools.ksp' version '1.9.10-1.0.13' apply false
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}