fix(android): Enforce Java 17 for all subprojects
Some checks are pending
Test / backend-test (push) Waiting to run
Test / frontend-test (push) Waiting to run

This commit is contained in:
fullsizemalt 2026-01-07 00:31:34 -08:00
parent 702bf87552
commit 7567efe51e

View file

@ -22,6 +22,10 @@ allprojects {
google() google()
mavenCentral() mavenCentral()
} }
tasks.withType(JavaCompile) {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
} }
task clean(type: Delete) { task clean(type: Delete) {