17 lines
393 B
Kotlin
17 lines
393 B
Kotlin
plugins {
|
|
id("io.element.android-compose")
|
|
}
|
|
|
|
android {
|
|
namespace = "io.element.android.x.textcomposer"
|
|
buildFeatures {
|
|
viewBinding = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":libraries:elementresources"))
|
|
implementation(libs.wysiwyg)
|
|
implementation(libs.androidx.constraintlayout)
|
|
implementation("com.google.android.material:material:1.7.0")
|
|
}
|