mirror of
https://github.com/null2264/yokai.git
synced 2025-06-21 10:44:42 +00:00
30 lines
671 B
Kotlin
30 lines
671 B
Kotlin
plugins {
|
|
id("com.android.library")
|
|
id("org.jetbrains.kotlin.android")
|
|
alias(kotlinx.plugins.compose.compiler)
|
|
}
|
|
|
|
android {
|
|
namespace = "yokai.presentation.widget"
|
|
|
|
defaultConfig {
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
}
|
|
|
|
buildFeatures {
|
|
compose = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.core)
|
|
implementation(projects.data)
|
|
implementation(projects.domain)
|
|
implementation(projects.i18n)
|
|
implementation(projects.presentation.core)
|
|
|
|
implementation(androidx.glance.appwidget)
|
|
|
|
implementation(libs.coil3)
|
|
}
|