mirror of
https://github.com/permissionlesstech/bitchat-android.git
synced 2026-08-22 07:06:05 +00:00
28 lines
736 B
Plaintext
28 lines
736 B
Plaintext
import org.gradle.api.artifacts.dsl.LockMode
|
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
plugins {
|
|
alias(libs.plugins.android.application) apply false
|
|
alias(libs.plugins.android.library) apply false
|
|
alias(libs.plugins.kotlin.compose) apply false
|
|
}
|
|
|
|
subprojects {
|
|
dependencyLocking {
|
|
lockAllConfigurations()
|
|
lockMode.set(LockMode.STRICT)
|
|
}
|
|
}
|
|
|
|
tasks.whenTaskAdded {
|
|
if (name.contains("ArtProfile")) {
|
|
enabled = false
|
|
}
|
|
}
|
|
|
|
tasks.register("clientRewriteContractTest") {
|
|
group = "verification"
|
|
description = "Runs the complete compatibility gate for a from-scratch client rewrite."
|
|
dependsOn(":app:testDebugUnitTest")
|
|
}
|