You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Moving a dependency scope from one to the other via ContributesBinding will end up with error: [Dagger/DuplicateBindings]
interfaceMyClass// Changing from `SubcomponentScope` to `AppScope` will throw an error
@ContributesBinding(SubcomponentScope::class)
classMyClassImpl : MyClass