2023-01-26 22:53:24 +00:00
|
|
|
plugins {
|
2024-04-06 05:07:11 +00:00
|
|
|
id("mihon.library")
|
|
|
|
id("mihon.library.compose")
|
2023-01-28 03:31:12 +00:00
|
|
|
kotlin("android")
|
2023-01-26 22:53:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace = "tachiyomi.presentation.widget"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2024-01-29 09:11:28 +00:00
|
|
|
implementation(projects.core.common)
|
2024-01-23 12:35:58 +00:00
|
|
|
implementation(projects.domain)
|
|
|
|
implementation(projects.presentationCore)
|
|
|
|
api(projects.i18n)
|
2023-01-26 22:53:24 +00:00
|
|
|
|
2023-11-11 23:13:44 +00:00
|
|
|
implementation(compose.glance)
|
2023-01-26 22:53:24 +00:00
|
|
|
|
2023-11-11 23:31:27 +00:00
|
|
|
implementation(kotlinx.immutables)
|
|
|
|
|
2023-06-01 02:48:13 +00:00
|
|
|
implementation(platform(libs.coil.bom))
|
2023-01-26 22:53:24 +00:00
|
|
|
implementation(libs.coil.core)
|
2023-06-01 02:48:13 +00:00
|
|
|
|
2023-02-21 00:02:38 +00:00
|
|
|
api(libs.injekt.core)
|
2023-01-26 22:53:24 +00:00
|
|
|
}
|