-
Notifications
You must be signed in to change notification settings - Fork 4
/
base_build.gradle
42 lines (32 loc) · 1 KB
/
base_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
dependencies {
// core android
implementation android_core.core
implementation app_compat.app_compat
implementation material.material
//Compose
implementation compose.ui
implementation compose.material
implementation compose.preview
implementation compose.activity_compose
// dagger-hilt - for dependency injection
implementation dagger_hilt.hilt_android
implementation dagger_hilt.navigation_compose
kapt dagger_hilt.android_compiler
kapt dagger_hilt.hilt_compiler
// timber
implementation timber.timber
// junit4
testImplementation junit.junit
// google truth
testImplementation truth.truth
// junit4
androidTestImplementation junit.ext_junit
// espresso
androidTestImplementation espresso.core
// compose ui
androidTestImplementation compose.ui_test_junit4
debugImplementation compose.ui_tooling
debugImplementation compose.ui_test_manifest
// google truth
androidTestImplementation truth.truth
}