16 lines
212 B
Kotlin
16 lines
212 B
Kotlin
plugins {
|
|
id("common.android-library")
|
|
}
|
|
|
|
android {
|
|
buildFeatures {
|
|
compose = false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":base-test"))
|
|
|
|
implementation(Libs.AndroidX.Lifecycle.viewModel)
|
|
}
|