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.
40 lines
1.0 KiB
40 lines
1.0 KiB
/* |
|
* Copyright 2023, 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-library") |
|
alias(libs.plugins.anvil) |
|
} |
|
|
|
android { |
|
namespace = "io.element.android.libraries.voicerecorder.impl" |
|
} |
|
|
|
anvil { |
|
generateDaggerFactories.set(true) |
|
} |
|
|
|
dependencies { |
|
api(projects.libraries.voicerecorder.api) |
|
api(libs.opusencoder) |
|
|
|
implementation(libs.dagger) |
|
implementation(projects.appconfig) |
|
implementation(projects.libraries.matrix.api) |
|
implementation(projects.libraries.core) |
|
implementation(projects.libraries.di) |
|
|
|
implementation(libs.androidx.annotationjvm) |
|
implementation(libs.coroutines.core) |
|
|
|
testImplementation(projects.tests.testutils) |
|
testImplementation(libs.test.junit) |
|
testImplementation(libs.test.truth) |
|
testImplementation(libs.test.mockk) |
|
testImplementation(libs.test.turbine) |
|
testImplementation(libs.coroutines.core) |
|
testImplementation(libs.coroutines.test) |
|
}
|
|
|