mirror of
https://github.com/CatimaLoyalty/Android.git
synced 2025-12-23 23:28:14 -05:00
13 lines
350 B
Kotlin
13 lines
350 B
Kotlin
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
plugins {
|
|
alias(libs.plugins.com.android.application) apply false
|
|
alias(libs.plugins.org.jetbrains.kotlin.android) apply false
|
|
}
|
|
|
|
allprojects {
|
|
tasks.withType<JavaCompile> {
|
|
options.compilerArgs.add("-Xlint:deprecation")
|
|
}
|
|
}
|