25 lines
493 B
Kotlin
25 lines
493 B
Kotlin
plugins {
|
|
alias(mihonx.plugins.android.library)
|
|
alias(mihonx.plugins.compose)
|
|
|
|
alias(mihonx.plugins.spotless)
|
|
}
|
|
|
|
android {
|
|
namespace = "tachiyomi.presentation.widget"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.core.common)
|
|
implementation(projects.domain)
|
|
implementation(projects.presentationCore)
|
|
api(projects.i18n)
|
|
|
|
implementation(libs.androidx.glance.appWidget)
|
|
implementation(libs.material)
|
|
|
|
implementation(libs.coil.core)
|
|
|
|
api(libs.injekt)
|
|
}
|