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