-
-
Notifications
You must be signed in to change notification settings - Fork 719
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Breaking Changes for scoped view model in version 3.5.3 #1750
Comments
We're also seeing the same behaviour. Scoped viewmodels injected via Koin are now giving multiple instances whereas previously the same instance across the scope was expected. |
I observe similar erroneous behavior: scope<ParentActivity> {
factory { SomeDependency(get()) }
viewModelOf(::FragmentXViewModel)
viewModelOf(::FragmentYViewModel)
} In 3.5.0, |
@dees91 I think v3.5.3 behavior is least astonishing because |
@congvc-apero You are right that in this simplified snippet
|
@dees91 pardon me if I understand your usecase wrong. So basically, you want to share the same For clarify, here is CL I made - factory { SomeDependency() }
+ scoped { SomeDependency() } |
@congvc-apero Thank you for your reply.
Within the scope of ParentActivity, yes. Exiting and re-entering ParentActivity creates a new instance of However, referring to
I would like to determine:
This is important because I would like to know whether the behavior from previous versions in this situation will return in Koin 3.5.4 or this is the expected behavior. |
Interesting how there are multiple behavioral/breaking changes going from 3.5.1 to 3.5.3. See also this issue I reported last month: #1738 A patch-level version update should not have breaking changes. |
@dees91 in that case, I'd like to keep track of the issue and see how it will be resolved. |
Here it's more a regression due to VM key build refactoring. IF I have proper tests/examples to reproduce to add to examples app, I can quickly patch it. Sorry for the break 🙏 |
Fixed. See PR. Let's check 3.5.4-RC1 |
Describe the bug
Using activity scope, the koinNavViewModel method creates a new view model each time if the default key and qualifier arguments are used. As a workaround I had to add a key argument.
Initial investigation
I have found that org.koin.androidx.viewmodel.resolveViewModel method internally use new getViewModelKey method which builds view model key based on provided key, qualifier and id of a scope if it is not the root one. In the result when key and qualifier are left default (both are nulls) the same key is generated for each view model and ViewModelProvider calls factory each time view model type is not matched.
Is this intentional change that from 3.5.3 for scoped view model key or qualifier argument is required?
The text was updated successfully, but these errors were encountered: