mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-06 00:05:05 +01:00
46e734fc8e
* Migrate to multiplatform string resources * Move plurals translations into separate files * Fix lint check on generated files
39 lines
821 B
Plaintext
39 lines
821 B
Plaintext
plugins {
|
|
id("com.android.library")
|
|
kotlin("android")
|
|
}
|
|
|
|
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 {
|
|
implementation(project(":core"))
|
|
implementation(project(":domain"))
|
|
implementation(project(":presentation-core"))
|
|
api(project(":i18n"))
|
|
|
|
implementation(compose.glance)
|
|
lintChecks(compose.lintchecks)
|
|
|
|
implementation(kotlinx.immutables)
|
|
|
|
implementation(platform(libs.coil.bom))
|
|
implementation(libs.coil.core)
|
|
|
|
api(libs.injekt.core)
|
|
}
|