Fix compile errors from initial build

- Main.kt: move ConfigStore/AppState outside application {} scope (remember
  is not valid outside a composable)
- IosConnector: split runGphoto2/runGphoto2InDir to avoid named+positional
  vararg mixing (Kotlin does not allow this)
- ConnectScreen: fix SmartPhone -> Smartphone icon name
- ConnectScreen/BrowseScreen/ImportScreen/SettingsScreen: update deprecated
  Icons.Default.ArrowBack to Icons.AutoMirrored.Filled.ArrowBack
- AndroidConnector: remove unused variable assignment in remoteChecksum
- ExifFilter: replace return@filter labels with private helper function to
  eliminate ambiguous label warnings
This commit is contained in:
Kyle Bolen
2026-07-28 03:09:28 +00:00
parent 145b7bc955
commit c4608e9c0e
13 changed files with 395 additions and 44 deletions

View File

@@ -10,7 +10,7 @@ group = "com.bolenpad.photophetch"
version = "1.0.0"
kotlin {
jvmToolchain(21)
jvmToolchain(17)
}
dependencies {