apps-android-commons/build.gradle.kts
Rohit Verma 8ad664e216 chore: migrate groovy build files to Kotlin DSL and upgrade AGP
chore: use version catalog to manage dependencies

chore: move plugins to version catalog

remove deprecated way of enabling build-config and redundant code

chore: setup triplet-play plugin configuration

refactor: move dependency block and tasks to the end of build file

refactor: move dependency block and mark redundant dependencies
2025-05-25 18:19:48 +05:30

13 lines
No EOL
493 B
Kotlin

// 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.jetbrains.kotlin.android) apply false
alias(libs.plugins.github.triplet.play) apply false
alias(libs.plugins.getkeepsafe.dexcount)
}
subprojects{
tasks.withType<Test>().configureEach {
jvmArgs = (jvmArgs ?: emptyList()) + listOf("--add-opens=java.base/java.lang=ALL-UNNAMED")
}
}