15 lines
365 B
Kotlin
15 lines
365 B
Kotlin
plugins {
|
|
id("io.element.android-compose-library")
|
|
alias(libs.plugins.ksp)
|
|
}
|
|
|
|
android {
|
|
namespace = "io.element.android.x.libraries.designsystem"
|
|
|
|
dependencies {
|
|
// Should not be there, but this is a POC
|
|
implementation(libs.coil.compose)
|
|
implementation(libs.accompanist.systemui)
|
|
ksp(libs.showkase.processor)
|
|
}
|
|
}
|