4c51d01236
# Conflicts: # app/build.gradle.kts # core/archive/build.gradle.kts # gradle/libs.versions.toml # i18n/build.gradle.kts # settings.gradle.kts # source-api/build.gradle.kts
35 lines
735 B
Kotlin
35 lines
735 B
Kotlin
plugins {
|
|
id("mihon.library")
|
|
id("mihon.library.compose")
|
|
kotlin("android")
|
|
}
|
|
|
|
android {
|
|
namespace = "tachiyomi.presentation.widget"
|
|
|
|
defaultConfig {
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.core.common)
|
|
implementation(projects.domain)
|
|
implementation(projects.presentationCore)
|
|
api(projects.i18n)
|
|
|
|
implementation(libs.androidx.glance.appWidget)
|
|
implementation(libs.material)
|
|
|
|
implementation(libs.kotlinx.collections.immutable)
|
|
|
|
implementation(libs.coil.core)
|
|
|
|
// SY -->
|
|
implementation(libs.material)
|
|
// SY <--
|
|
|
|
api(libs.injekt)
|
|
}
|