Skip to content

Commit

Permalink
Fix: #346 Voyager hilt support broken with Dagger 2.51 (#388)
Browse files Browse the repository at this point in the history
  • Loading branch information
nvkleban authored Apr 7, 2024
1 parent b7741b8 commit 0188e00
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ kotlin = "1.9.21"
kodein = "7.21.2"
koin = "3.5.3"
koin-compose = "1.1.2"
hilt = "2.49"
hilt = "2.51.1"
leakCanary = "2.9.1"
appCompat = "1.6.1"
lifecycle = "2.6.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public object VoyagerHiltViewModelFactories {
}

internal class InternalViewModelFactory @Inject internal constructor(
@HiltViewModelMap.KeySet private val keySet: Set<String>,
@HiltViewModelMap.KeySet private val keySet: Map<Class<*>, Boolean>,
private val viewModelComponentBuilder: ViewModelComponentBuilder
) {
fun fromActivity(
Expand Down

0 comments on commit 0188e00

Please sign in to comment.