-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
41 lines (37 loc) · 1.23 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
COMPILE_SDK = 32
MIN_SDK = 21
TARGET_SDK = COMPILE_SDK
kotlinx = "1.8.0"
kotlin = "1.6.10"
appcompat = "1.4.2"
cardview = "1.0.0"
material = "1.7.0-alpha02"
retrofit = "2.9.0"
navigation = "2.5.1"
ok_http3_logging = "5.0.0-alpha.3"
constraint_layout = "2.1.4"
recycler_view = "1.2.1"
kotlin_coroutines = "1.6.1"
kotlin_serialization = "1.2.2"
splash_screen = "1.0.0-rc01"
glide = "4.13.1"
kotlin_serialization_converter = "0.8.0"
dagger_hilt = "2.42"
}
dependencies {
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigation"
classpath "com.google.dagger:hilt-android-gradle-plugin:$dagger_hilt"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin"
}
}
plugins {
id 'com.android.application' version '7.2.1' apply false
id 'com.android.library' version '7.2.1' apply false
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}