-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
28 lines (22 loc) · 820 Bytes
/
build.gradle.kts
File metadata and controls
28 lines (22 loc) · 820 Bytes
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
plugins {
alias(libs.plugins.convention.android.library)
alias(libs.plugins.convention.hilt)
}
android {
namespace = "xyz.aprildown.timer.presentation"
}
dependencies {
api(project(":domain"))
testImplementation(libs.junit)
testImplementation(libs.kotlin.coroutines.test)
testImplementation(libs.bundles.mockito.core)
testImplementation(libs.androidx.test.arch)
androidTestImplementation(libs.kotlin.coroutines.test)
androidTestImplementation(libs.bundles.mockito.android)
androidTestImplementation(libs.bundles.androidx.test)
androidTestImplementation(libs.bundles.androidx.test.espresso)
api(libs.androidx.lifecycle.runtime)
api(libs.androidx.lifecycle.liveData)
api(libs.androidx.lifecycle.viewModel)
implementation(libs.accurateCountDownTimer)
}