<type>(scope): <description>

[body]

[footer(s)]
This commit is contained in:
ITQ
2025-11-23 13:37:04 +03:00
parent 8be4b6b6fe
commit afea49db37
2 changed files with 0 additions and 15 deletions
-8
View File
@@ -1,5 +1,4 @@
import org.jetbrains.kotlin.gradle.dsl.JvmTarget import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import org.gradle.api.tasks.compile.JavaCompile
plugins { plugins {
alias(libs.plugins.androidApplication) alias(libs.plugins.androidApplication)
@@ -69,13 +68,6 @@ android {
freeCompilerArgs = listOf("-XXLanguage:+PropertyParamAnnotationDefaultTargetMode") freeCompilerArgs = listOf("-XXLanguage:+PropertyParamAnnotationDefaultTargetMode")
} }
} }
// Disable Java compilation for unit tests since we only use Kotlin
tasks.withType<JavaCompile>().configureEach {
if (name.contains("UnitTest")) {
enabled = false
}
}
} }
dependencies { dependencies {
-7
View File
@@ -18,10 +18,3 @@ buildscript {
classpath(libs.google.services.gmc) classpath(libs.google.services.gmc)
} }
} }
// Configure Java toolchain
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(21))
}
}