-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
34 lines (32 loc) · 1.04 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
buildscript {
ext {
hilt_version = '2.42'
gson_version = '2.9.0'
room_version = '2.4.3'
rxjava_version = '3.1.3'
okhttp_version = '4.10.0'
compose_version = '1.3.2'
compose_compiler = '1.3.0'
core_ktx_version = '1.9.0'
retrofit_version = '2.9.0'
compose_nav_version = '2.5.3'
core_splash_version = '1.0.0'
compose_material_version = '1.3.1'
activity_compose_version = '1.6.1'
lifecycle_version = '2.6.0-alpha03'
hilt_navigation_compose_version = '1.0.0'
accompanist_swiperefresh_version = '0.25.1'
}
dependencies {
classpath('com.google.dagger:hilt-android-gradle-plugin:2.42')
}
}
plugins {
id 'com.android.library' version '7.3.1' apply false
id 'com.android.application' version '7.3.1' apply false
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
id 'org.jlleitschuh.gradle.ktlint' version '10.3.0' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}