-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
69 lines (59 loc) · 1.81 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.8.20' // update according to composeVersion
ext.compat = "1.6.1"
ext.nav_version = "2.5.3"
ext.work_version = "2.8.1"
ext.ktx = "1.10.0"
ext.coroutines = "1.6.4"
ext.lifecycle_ktx = "2.6.1"
ext.room = "2.5.1"
ext.room_compiler = "2.5.1"
ext.gson = "2.9.0"
ext.retrofit = "2.9.0"
ext.retrofit_gson = "2.9.0"
ext.okhttp_log = "4.10.0"
ext.okhttp = "4.10.0"
ext.composeVersion = "1.4.2"
// update kotlinCompilerExtensionVersion when composeVersion updated
ext.composeVersionTheme = "1.2.1"
// update kotlinCompilerExtensionVersion when composeVersionTheme updated
ext.hilt = "2.42"
ext.hilt_jetpack = "1.0.0"
ext.junit = "4.13.2"
ext.junit_android = "1.1.5"
ext.mockito_core = "5.2.0"
ext.mockito_kotlin = "2.2.0"
ext.testing_core = "1.1.1"
ext.testing_coroutine = "1.6.0"
ext.espresso = "3.5.1"
project.ext {
min = 21
target = 33
compile = 33
tools = "30.0.3"
}
repositories {
mavenCentral()
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.0.0'
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:2.45"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
mavenCentral()
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}