|
|
|
import extension.setupAnvil
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2022-2024 New Vector Ltd.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
* Please see LICENSE in the repository root for full details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
id("io.element.android-compose-library")
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace = "io.element.android.features.leaveroom.impl"
|
|
|
|
}
|
|
|
|
|
|
|
|
setupAnvil()
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(projects.libraries.core)
|
|
|
|
implementation(projects.libraries.architecture)
|
|
|
|
implementation(projects.libraries.matrix.api)
|
|
|
|
api(projects.features.leaveroom.api)
|
|
|
|
|
|
|
|
testImplementation(libs.test.junit)
|
|
|
|
testImplementation(libs.coroutines.test)
|
|
|
|
testImplementation(libs.coroutines.core)
|
|
|
|
testImplementation(libs.molecule.runtime)
|
|
|
|
testImplementation(libs.test.truth)
|
|
|
|
testImplementation(libs.test.turbine)
|
|
|
|
testImplementation(projects.libraries.matrix.test)
|
|
|
|
testImplementation(projects.tests.testutils)
|
|
|
|
}
|