Android Matrix messenger application using the Matrix Rust Sdk and Jetpack Compose
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
plugins {
|
|
|
|
id("io.element.android-compose-library")
|
|
|
|
alias(libs.plugins.anvil)
|
|
|
|
id("kotlin-parcelize")
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace = "io.element.android.features.${MODULE_NAME}.impl"
|
|
|
|
}
|
|
|
|
|
|
|
|
anvil {
|
|
|
|
generateDaggerFactories.set(true)
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(projects.anvilannotations)
|
|
|
|
anvil(projects.anvilcodegen)
|
|
|
|
api(projects.features.${ MODULE_NAME }.api)
|
|
|
|
implementation(projects.libraries.core)
|
|
|
|
implementation(projects.libraries.architecture)
|
|
|
|
implementation(projects.libraries.matrix.api)
|
|
|
|
implementation(projects.libraries.matrixui)
|
|
|
|
implementation(projects.libraries.designsystem)
|
|
|
|
|
|
|
|
testImplementation(libs.test.junit)
|
|
|
|
testImplementation(libs.coroutines.test)
|
|
|
|
testImplementation(libs.molecule.runtime)
|
|
|
|
testImplementation(libs.test.truth)
|
|
|
|
testImplementation(libs.test.turbine)
|
|
|
|
testImplementation(projects.libraries.matrix.test)
|
|
|
|
}
|