Update build.gradle

This commit is contained in:
alphax-hue3682 2025-01-10 13:29:18 +03:30 committed by GitHub
parent 9b0a987c86
commit 13674920f6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -78,8 +78,8 @@ android {
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
buildFeatures {
@ -147,7 +147,7 @@ if (playCredentialsJSON.exists()) {
tasks.withType(KotlinCompile.class).configureEach {
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "11"
}
}
@ -184,4 +184,4 @@ def getVersionProps(String propName) {
}
}
return ""
}
}