Files
coco 723ce1af5c a
2026-07-03 15:12:48 +08:00

21 lines
693 B
Kotlin

plugins {
id("common.android-library")
}
dependencies {
implementation(project(":base-android"))
implementation(project(":domain"))
implementation(project(":app-base"))
implementation(project(":app-theme"))
implementation(Libs.Coil.compose)
implementation(Libs.ThirdParty.gowthamComposeRatingbar)
implementation(Libs.ThirdParty.oneboneComposeToolbar)
debugImplementation(Libs.AndroidX.Test.Compose.manifest)
debugImplementation(project(":base-android-hilt-test"))
testImplementation(project(":base-test-android"))
androidTestImplementation(project(":fake-movie-repository"))
androidTestImplementation(Libs.AndroidX.Test.Compose.junit4)
}