-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
72 lines (68 loc) · 2.38 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
70
71
72
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
acra_version = '5.9.3'
agp_version = '7.0.0'
apollo_version = '3.3.0'
appcompat_version = '1.4.2'
appupdater_version = '2.7'
chart_version = 'v3.1.0'
coil_version = '2.1.0'
constraint_version = '2.1.4'
core_text_ktx_version = '1.4.0'
core_version = '1.8.0'
datastore_version = '1.0.0'
desugar_version = '1.1.5'
expresso_version = '3.4.0'
fragment_version = '1.4.0-alpha05'
hilt_version = '2.42'
junit_ext_version = '1.1.3'
junit_version = '4.13.2'
kotlin_version = '1.7.0'
ktlint_version = '10.1.0'
leak_version = '2.9.1'
logging_version = '5.0.0-alpha.8'
lottie_version = '5.2.0'
mdc_version = '1.6.1'
moshi_version = '1.13.0'
multidex_version = '2.0.1'
nav_version = '2.4.0-alpha06'
oss_plugin_version = '0.10.4'
oss_version = '17.0.0'
paging_version = '3.1.1'
pref_version = '1.2.0'
progress_version = '2.1.0'
reponse_version = '4.1.0'
retrofit_version = '2.9.0'
robolectric_version = '4.8.1'
room_version = '2.4.2'
secrets_version = '2.0.1'
swiperefresh_version = '1.1.0'
timber_version = '5.0.1'
}
repositories {
google()
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath "com.android.tools.build:gradle:$agp_version"
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"
classpath "com.google.android.gms:oss-licenses-plugin:$oss_plugin_version"
classpath "com.apollographql.apollo3:apollo-gradle-plugin:$apollo_version"
classpath "org.jlleitschuh.gradle:ktlint-gradle:$ktlint_version"
classpath "com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:$secrets_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}