fix(build): add explicit Kotlin imports for Properties/FileInputStream and fix signing config casts
CI / Lint (pull_request) Successful in 19m23s
CI / Test (pull_request) Successful in 19m19s
CI / Build Android (pull_request) Canceled after 25m23s
CI / Build iOS (pull_request) Canceled after 0s

- Add import statements for java.util.Properties and java.io.FileInputStream
  (newer Kotlin DSL requires explicit imports)
- Replace deprecated jvmTarget = JavaVersion.VERSION_17.toString() with "17"
- Replace unsafe 'as String' casts with Properties.getProperty() in signing config
- Fix same import issue in settings.gradle.kts
This commit is contained in:
robot
2026-08-01 20:39:01 +00:00
parent ea37f63aa9
commit 350d554b45
2 changed files with 13 additions and 8 deletions
+3 -1
View File
@@ -1,7 +1,9 @@
import java.util.Properties
pluginManagement {
val flutterSdkPath =
run {
val properties = java.util.Properties()
val properties = Properties()
file("local.properties").inputStream().use { properties.load(it) }
val flutterSdkPath = properties.getProperty("flutter.sdk")
require(flutterSdkPath != null) { "flutter.sdk not set in local.properties" }