-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
36 lines (34 loc) · 1.14 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
buildscript {
ext {
compose_ui_version = '1.3.0'
hilt_version = '2.43.2'
okhttp_version = '4.9.1'
retrofit_version = '2.9.0'
room = '2.4.3'
nav_compose_version = '2.6.0-alpha03'
accompanist_version = '0.25.1'
coil_version = '2.2.0'
coroutines_version = '1.6.4'
kotest_version = '5.4.2'
material_compose_version = '1.3.0'
android_material_version = '1.7.0'
app_compat_version = '1.5.1'
hilt_nav_version = '1.0.0'
junit_version = '4.13.2'
junit_ext_version = '1.1.3'
epresso_version = '3.4.0'
truth_version = '1.1'
mockk_version = '1.12.5'
core_testing_version = '2.1.0'
}
}
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.3.0' apply false
id 'com.android.library' version '7.3.0' apply false
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
id 'com.google.dagger.hilt.android' version '2.43.2' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}