2023-01-27 01:53:24 +03:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
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")
|
|
|
|
}
|
|
|
|
|
|
|
|
buildFeatures {
|
|
|
|
compose = true
|
|
|
|
}
|
|
|
|
|
|
|
|
composeOptions {
|
|
|
|
kotlinCompilerExtensionVersion = compose.versions.compiler.get()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
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
|
|
|
|
2023-02-21 03:02:38 +03:00
|
|
|
api(libs.injekt.core)
|
2023-01-27 01:53:24 +03:00
|
|
|
}
|