-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
63 lines (54 loc) · 1.78 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlin_version = '1.7.21'
gradle_version = '8.7.1'
supportLibVersion = '1.1.0'
coroutinesVersion = '1.4.3'
fragment_version = '1.8.4'
androidx_core_version= '1.9.0'
materialVersion = '1.12.0'
constraint_version = '2.1.4'
recyclerview_version = '1.3.2'
espresso_version = '3.5.1'
test_core_version = '1.5.0'
junit_version = '4.13.2'
fragmentTestingVersion = '1.5.5'
mockK_version = '1.9'
androidx_junit_version = '1.1.5'
roboelectric_version = '4.12.2'
coroutines_test_version = '1.5.0'
roomVersion = '2.6.1'
lifecycleVersion = '2.8.6'
paging_version = '3.3.2'
navigation_version = '2.8.3'
workmanager_version = '2.9.1'
version_hilt = '2.51.1'
version_hilt_androidx = '1.0.0'
glideVersion = '4.12.0'
lottieVersion = '4.2.1'
timber_version = '5.0.1'
}
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradle_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:$version_hilt"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigation_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
maven { url "https://jitpack.io" }
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}