-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
46 lines (38 loc) · 1.42 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
dependencies {
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.5.3")
}
ext {
androidx_core_version = '1.8.0'
androidx_appcompat_version = '1.5.1'
android_material_version = '1.8.0-alpha01'
androidx_constraint_version = '2.1.4'
androidx_navigation_version = '2.5.2'
junit_version = '4.13.2'
androidx_junit_version = '1.1.3'
androidx_espresso_version = '3.4.0'
hilt_version = '2.44'
hilt_navigation_fragment_version = '1.0.0'
retrofit_version = '2.9.0'
okhttp_version = '4.10.0'
androidx_activity_ktx_version = '1.5.1'
androidx_fragment_ktx_version = '1.5.4'
glide_version = '4.13.2'
google_version = '20.3.0'
google_service_version = '4.3.14'
indicator_version = '2.1.6'
room_version = "2.4.3"
common_version = "2.4"
}
}
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
id 'com.google.dagger.hilt.android' version "$hilt_version" apply false
id 'com.google.gms.google-services' version "$google_service_version"
}
task clean(type: Delete) {
delete rootProject.buildDir
}