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.
35 lines
962 B
35 lines
962 B
1 year ago
|
plugins {
|
||
|
id("io.element.android-compose-library")
|
||
|
alias(libs.plugins.anvil)
|
||
|
alias(libs.plugins.ksp)
|
||
|
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)
|
||
|
|
||
|
ksp(libs.showkase.processor)
|
||
|
}
|