resaca
resaca copied to clipboard
Compose Multiplatform library to scope ViewModels to a Composable, surviving configuration changes and navigation
Bumps androidx.compose.compiler:compiler from 1.5.10 to 1.5.11. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...
Bumps org.jetbrains.kotlin.android from 1.9.22 to 1.9.23. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...
Bumps [com.google.devtools.ksp](https://github.com/google/ksp) from 1.9.22-1.0.18 to 1.9.23-1.0.19. Release notes Sourced from com.google.devtools.ksp's releases. 1.9.23-1.0.19 New APIs #1708 SymbolProcessorEnvironment.kspVersion #1707 CodeGenerator.associateWithFunctions and CodeGenerator.associateWithProperties Issues fixed in KSP2 #1691 IllegalStateException: Value type not...
Bumps `agp` from 8.3.2 to 8.4.0. Updates `com.android.application` from 8.3.2 to 8.4.0 Updates `com.android.library` from 8.3.2 to 8.4.0 Dependabot will resolve any conflicts with this PR as long as you...
Bumps [com.google.devtools.ksp](https://github.com/google/ksp) from 1.9.23-1.0.20 to 1.9.24-1.0.20. Release notes Sourced from com.google.devtools.ksp's releases. 1.9.24-1.0.20 KSP 1.0.20 for kotlin compiler version 1.9.24 Commits ebe908a UPDATE_KOTLIN_VERSION: 1.9.24 bd930df Reapply "UPDATE_KOTLIN_VERSION: 1.9.23" ed69ac3 Reapply...
Bumps org.jetbrains.kotlin.android from 1.9.23 to 1.9.24. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...
Hi! Now that the Jetpack lifecycle and view model libraries have multiplatform support, I was wondering if this library could be made multiplatform compatible. In my case, I'm thinking of...
I use this library in my projects, especially when I use ViewModel in ModalBottomSheets and composables that don't have navigation. For one of my projects, I cannot use it because...
i have following VM: ``` val viewModel: TorrentDetailsViewModel = hiltViewModelScoped( key = hash, defaultArguments = bundleOf(TorrentDetailsViewModel.HASH_KEY to hash) ) ``` After composable is recomposed with new hash, new viewModel is...