mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-21 17:05:39 +03:00
ba9d78e0d2
Other files.
28 lines
799 B
Text
28 lines
799 B
Text
# Copyright 2021-2024 New Vector Ltd.
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
# Please see LICENSE in the repository root for full details.
|
|
|
|
clean_assemble {
|
|
tasks = ["clean", ":vector:assembleGPlayDebug"]
|
|
}
|
|
|
|
clean_assemble_build_cache {
|
|
tasks = ["clean", ":vector:assembleGPlayDebug"]
|
|
gradle-args = ["--build-cache"]
|
|
}
|
|
|
|
clean_assemble_without_cache {
|
|
tasks = ["clean", ":vector:assembleGPlayDebug"]
|
|
gradle-args = ["--no-build-cache"]
|
|
}
|
|
|
|
incremental_assemble_sdk_abi {
|
|
tasks = [":vector:assembleGPlayDebug"]
|
|
apply-abi-change-to = "matrix-sdk-android/src/main/java/org/matrix/android/sdk/api/Matrix.kt"
|
|
}
|
|
|
|
incremental_assemble_sdk_no_abi {
|
|
tasks = [":vector:assembleGPlayDebug"]
|
|
apply-non-abi-change-to = "matrix-sdk-android/src/main/java/org/matrix/android/sdk/api/Matrix.kt"
|
|
}
|