use java 17 for compat

Signed-off-by: swurl <swurl@swurl.xyz>
This commit is contained in:
swurl
2025-06-02 01:02:25 -04:00
parent fb3988a78a
commit af8396808e
+3 -3
View File
@@ -35,12 +35,12 @@ android {
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "21"
jvmTarget = "17"
}
packaging {