Anyone else having issues upgrading from Koin beta1 to beta2?
Having super weird compile issues w/ module DSLs that work fine in beta1. E.g.:
val appModule = module {
single { UserStorageImpl() as UserStorage }
scope("frontdoor") {
single { BrandedSearchFormRelay() }
}
}
complains that Qualifier is expected because the "scope" being picked up is in "org.koin.core.module.Module" even though there is also one in "org.koin.dsl" that's a top level function.