-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
59 lines (55 loc) · 1.74 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
versions = [
min_sdk : 21,
compile_sdk: 31,
target_sdk : 31
]
kotlin_version = '1.5.20'
googleServicesVersion = '16.0.1'
lifecycle_version = '2.2.0'
lifecycle_ktx_version = '2.3.1'
moshi_version = '1.8.0'
retrofit_version = '2.9.0'
hyperion_version = '0.9.27'
groupie_version = '2.9.0'
anko_version = '0.10.6'
ktx_version = '1.0.0'
kotlin_coroutines_version = '1.3.9'
gander_version = '1.4.0'
dagger_version = '2.37'
dokka_version = '0.9.17'
threetenabp_version = '1.3.0'
timber_version = '4.7.1'
coroutines_android_version = '1.5.1'
nav_frag_version = '2.3.5'
coroutines_adapter_version = '0.9.2'
gson_version = '2.8.8'
moshi_version = '1.9.2'
logging_interceptor_version = '4.9.1'
retrofit_converters_version = '2.6.0'
}
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.dokka:dokka-android-gradle-plugin:${dokka_version}"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}