mirror of
https://github.com/null2264/yokai.git
synced 2025-06-21 02:34:39 +00:00
33 lines
736 B
Kotlin
33 lines
736 B
Kotlin
plugins {
|
|
id("com.android.library")
|
|
id("org.jetbrains.kotlin.android")
|
|
}
|
|
|
|
android {
|
|
namespace = "yokai.presentation.widget"
|
|
|
|
defaultConfig {
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
}
|
|
|
|
buildFeatures {
|
|
compose = true
|
|
}
|
|
|
|
composeOptions {
|
|
kotlinCompilerExtensionVersion = compose.versions.compose.compiler.get()
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.core)
|
|
implementation(projects.data)
|
|
implementation(projects.domain)
|
|
implementation(projects.i18n)
|
|
implementation(projects.presentation.core)
|
|
|
|
implementation(androidx.glance.appwidget)
|
|
|
|
implementation(libs.coil3)
|
|
}
|