-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
53 lines (49 loc) · 1.6 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext{
kotlin_version = "1.4.21-2"
kotlinx_coroutine_test_version = '1.2.1'
app_compat_version = '1.2.0'
core_ktx_version = '1.3.2'
constraint_layout_version = '2.0.4'
lifecycle_extension_version = '2.2.0'
junit_version = '4.13.1'
junit_ext_version = '1.1.2'
test_runner_version = '1.3.0'
core_testing_version = '1.1.1'
espresso_core_version = '3.3.0'
lifecycle_ktx_version = '2.2.0'
retrofit_version = '2.6.2'
koin_androidx_version = '2.0.1'
moshi_converter_version = '2.5.0'
retrofit_coroutine_adapter_version = '0.9.2'
okhttp_version = '3.12.1'
logging_interceptor_version = '3.6.0'
material_design_version = '1.2.1'
material_support_design_version = '28.0.0'
mockk_version = '1.10.0'
androidx_test_core_version = '1.3.0'
compose_version = '1.0.0-alpha11'
coil_version = '1.1.1'
accompanist_coil_version = '0.5.0'
}
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.0-alpha05'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}