aniyomi/presentation-widget/build.gradle.kts
Secozzi affe6512ee
feat: Add detekt in the project (#1651)
Co-authored-by: Theo L.M. <9647399+theolm@users.noreply.github.com>
2024-07-01 13:55:45 +02:00

38 lines
809 B
Text

plugins {
id("com.android.library")
kotlin("android")
kotlin("plugin.compose")
}
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(projects.core.common)
implementation(projects.domain)
implementation(projects.presentationCore)
api(projects.i18n)
implementation(compose.glance)
implementation(kotlinx.immutables)
implementation(platform(libs.coil.bom))
implementation(libs.coil.core)
api(libs.injekt.core)
}