2 replace all actions have been performed: - "SPDX-License-Identifier: AGPL-3.0-only" to "SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial" - "Please see LICENSE in the repository root for full details." to "Please see LICENSE files in the repository root for full details."
53 lines
1.7 KiB
Kotlin
53 lines
1.7 KiB
Kotlin
import extension.setupAnvil
|
|
|
|
/*
|
|
* Copyright 2023, 2024 New Vector Ltd.
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
* Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
plugins {
|
|
id("io.element.android-compose-library")
|
|
id("kotlin-parcelize")
|
|
}
|
|
|
|
android {
|
|
namespace = "io.element.android.features.poll.impl"
|
|
testOptions {
|
|
unitTests {
|
|
isIncludeAndroidResources = true
|
|
}
|
|
}
|
|
}
|
|
|
|
setupAnvil()
|
|
|
|
dependencies {
|
|
api(projects.features.poll.api)
|
|
implementation(projects.libraries.core)
|
|
implementation(projects.libraries.architecture)
|
|
implementation(projects.libraries.matrix.api)
|
|
implementation(projects.libraries.matrixui)
|
|
implementation(projects.libraries.designsystem)
|
|
implementation(projects.services.analytics.api)
|
|
implementation(projects.features.messages.api)
|
|
implementation(projects.libraries.dateformatter.api)
|
|
implementation(projects.libraries.uiStrings)
|
|
|
|
testImplementation(libs.test.junit)
|
|
testImplementation(libs.coroutines.test)
|
|
testImplementation(libs.molecule.runtime)
|
|
testImplementation(libs.test.truth)
|
|
testImplementation(libs.test.turbine)
|
|
testImplementation(libs.test.robolectric)
|
|
testImplementation(projects.libraries.matrix.test)
|
|
testImplementation(projects.services.analytics.test)
|
|
testImplementation(projects.features.messages.test)
|
|
testImplementation(projects.tests.testutils)
|
|
testImplementation(projects.libraries.dateformatter.test)
|
|
testImplementation(projects.features.poll.test)
|
|
testImplementation(libs.androidx.compose.ui.test.junit)
|
|
testReleaseImplementation(libs.androidx.compose.ui.test.manifest)
|
|
}
|