19 lines
322 B
Kotlin
19 lines
322 B
Kotlin
plugins {
|
|
id("local.library")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.igorwojda.showcase.album"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.featureBase)
|
|
|
|
ksp(libs.roomCompiler)
|
|
|
|
testImplementation(projects.libraryTestUtils)
|
|
testImplementation(libs.bundles.test)
|
|
|
|
testRuntimeOnly(libs.junitJupiterEngine)
|
|
}
|