* Add support for slash commands * Update screenshots * Rename module `slash` to `slashcommands` * Rename `SlashCommand` to `SlashCommandService` * Introduce MsgType in order to send text message with a different msgtype value. * Format file and add parameter names, add default values and cleanup * Add isSupported parameter to filter out unsupported yet commands. * Slash commands: disable suggestions if the feature is disabled. * Fix sending shrug command. * Add missing test on SuggestionsProcessor * Add tests on MessageComposerPresenter about slash command. * Fix import ordering * Add missing tests on CommandExecutor * Add missing tests in MarkdownTextEditorStateTest * Slash commands: Improve code when sending message with prefix. * Slash commands: Add support for /unflip --------- Co-authored-by: ElementBot <android@element.io>
51 lines
1.6 KiB
Kotlin
51 lines
1.6 KiB
Kotlin
import extension.setupDependencyInjection
|
|
import extension.testCommonDependencies
|
|
|
|
/*
|
|
* Copyright (c) 2025 Element Creations Ltd.
|
|
* 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.libraries.textcomposer"
|
|
testOptions {
|
|
unitTests.isIncludeAndroidResources = true
|
|
}
|
|
}
|
|
|
|
setupDependencyInjection()
|
|
|
|
dependencies {
|
|
implementation(projects.libraries.architecture)
|
|
implementation(projects.libraries.uiStrings)
|
|
implementation(projects.libraries.androidutils)
|
|
implementation(projects.libraries.core)
|
|
implementation(projects.libraries.matrix.api)
|
|
implementation(projects.libraries.matrixui)
|
|
implementation(projects.libraries.designsystem)
|
|
implementation(projects.libraries.testtags)
|
|
implementation(projects.libraries.uiUtils)
|
|
implementation(projects.libraries.slashcommands.api)
|
|
|
|
releaseApi(libs.matrix.richtexteditor)
|
|
releaseApi(libs.matrix.richtexteditor.compose)
|
|
if (file("${rootDir.path}/libraries/textcomposer/lib/library-compose.aar").exists()) {
|
|
println("\nNote: Using local binaries of the Rich Text Editor.\n")
|
|
debugApi(projects.libraries.textcomposer.lib)
|
|
} else {
|
|
debugApi(libs.matrix.richtexteditor)
|
|
debugApi(libs.matrix.richtexteditor.compose)
|
|
}
|
|
|
|
testCommonDependencies(libs, true)
|
|
testImplementation(projects.libraries.matrix.test)
|
|
}
|