-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
62 lines (55 loc) · 1.68 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
buildscript {
ext {
kotlin_version = '1.6.21'
compileSdkVersion = 31
targetSdkVersion = compileSdkVersion
minSdkVersion = 24
appcompat_version = '1.4.2'
lifecycle_version = '2.5.0'
constraint_layout_version = '2.1.4'
junit_version = '4.13.2'
google_truth_version = '1.1.2'
mockito_version = '3.9.0'
mockwebserver_version = '4.9.3'
robolectric_version = '4.8'
androidx_junit_version = '1.1.3'
androidx_core_testing_version = '2.1.0'
espresso_version = '3.4.0'
room_version = '2.4.2'
rxjava_version = '2.2.21'
rxkotlin_version = '2.4.0'
rxandroid_version = '2.1.1'
hilt_version = '2.42'
nav_version = '2.5.0'
retrofit_version = '2.9.0'
okHttp_version = '4.9.3'
moshi_converter_version = '2.9.0'
moshi_version = '1.13.0'
glide_version = '4.13.2'
material_version = '1.6.1'
leakcanary_version = '2.9.1'
desugar_jdk_libs_version = '1.1.5'
timber_version = '5.0.1'
security_version = "1.0.0"
s3_version = "2.13.5"
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}