Update Gradle configuration to use Java 17 and enhance map UI with search functionality

This commit is contained in:
Dayron
2025-10-06 15:14:35 +02:00
parent 797f77cf69
commit 0b9a140620
2 changed files with 102 additions and 9 deletions

View File

@@ -11,12 +11,12 @@ android {
ndkVersion = flutter.ndkVersion
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_11.toString()
jvmTarget = JavaVersion.VERSION_17.toString()
}
defaultConfig {