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