Align Android app module to Java 17 and bump wakelock_plus

This commit is contained in:
Specter242
2026-02-21 21:01:57 -05:00
parent 304c389669
commit 8fe4129204
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -19,13 +19,13 @@ android {
ndkVersion = flutter.ndkVersion
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
isCoreLibraryDesugaringEnabled = true
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_11.toString()
jvmTarget = JavaVersion.VERSION_17.toString()
}
defaultConfig {