Extract voice message player to its own module

This commit is contained in:
Benoit Marty 2024-12-13 15:30:24 +01:00 committed by Benoit Marty
parent c40d468e4f
commit 5e0d6a6e8a
23 changed files with 321 additions and 141 deletions

View file

@ -0,0 +1,23 @@
import extension.setupAnvil
/*
* Copyright 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.libraries.voiceplayer.api"
}
setupAnvil()
dependencies {
implementation(libs.androidx.annotationjvm)
implementation(libs.coroutines.core)
implementation(projects.libraries.matrix.api)
}