2023-01-26 23:53:24 +01:00
|
|
|
plugins {
|
2024-04-06 11:07:11 +06:00
|
|
|
id("mihon.library")
|
|
|
|
id("mihon.library.compose")
|
2023-01-27 22:31:12 -05:00
|
|
|
kotlin("android")
|
2023-01-26 23:53:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace = "tachiyomi.presentation.widget"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2024-01-29 15:11:28 +06:00
|
|
|
implementation(projects.core.common)
|
2024-01-23 09:35:58 -03:00
|
|
|
implementation(projects.domain)
|
|
|
|
implementation(projects.presentationCore)
|
|
|
|
api(projects.i18n)
|
2023-01-26 23:53:24 +01:00
|
|
|
|
2023-11-11 18:13:44 -05:00
|
|
|
implementation(compose.glance)
|
2024-10-26 10:02:07 +07:00
|
|
|
implementation(libs.material)
|
2023-01-26 23:53:24 +01: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 23:53:24 +01:00
|
|
|
implementation(libs.coil.core)
|
2023-05-31 22:48:13 -04:00
|
|
|
|
2024-09-08 20:09:45 +06:00
|
|
|
api(libs.injekt)
|
2023-01-26 23:53:24 +01:00
|
|
|
}
|