mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-06 10:47:25 +01:00
31 lines
650 B
Plaintext
31 lines
650 B
Plaintext
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(compose.glance)
|
|
|
|
implementation(kotlinx.immutables)
|
|
|
|
implementation(platform(libs.coil.bom))
|
|
implementation(libs.coil.core)
|
|
|
|
api(libs.injekt)
|
|
}
|