mirror of
https://github.com/permissionlesstech/bitchat-android.git
synced 2026-08-08 06:46:11 +00:00
19 lines
573 B
Plaintext
19 lines
573 B
Plaintext
// 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
|
|
}
|
|
|
|
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")
|
|
}
|