Skip to content
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

Kodein not binding #26

Open
williams98 opened this issue May 7, 2020 · 1 comment
Open

Kodein not binding #26

williams98 opened this issue May 7, 2020 · 1 comment

Comments

@williams98
Copy link

i'm facing while working with weather forecast implemented as done in tutorial since then i'm facing kodein binding issue

Issue: org.kodein.di.Kodein$NotFoundException: No binding found for bind() with ?().? { ? }

`class ForecastApplication : Application(), KodeinAware {

override val kodein = Kodein.lazy {
    import(androidXModule(this@ForecastApplication))

    bind() from singleton { ForecastDatabase(instance()) }
    bind() from singleton { instance<ForecastDatabase>().currentWeatherDao() }
    bind<ConnectivityInterceptor>() with singleton { ConnectivityInterceptorImpl(instance()) }
    bind() from singleton { WeatherStackApiService(instance()) }
    bind<WeatherNetworkDataSource>() with singleton { WeatherNetworkDataSourceImpl(instance()) }
    bind<ForecastRepository>() with singleton { ForecastRespositoryImpl(instance(), instance()) }
    bind() from provider { CurrentWeatherViewModelFactory(instance()) }
}
override fun onCreate() {
    super.onCreate()
    AndroidThreeTen.init(this)
}

}`

`override val kodein by closestKodein()
private val viewModelFactory: CurrentWeatherViewModelFactory by instance()
private lateinit var viewModel: CurrentWeatherViewModel

viewModel = ViewModelProvider(this, viewModelFactory)
.get(CurrentWeatherViewModel::class.java)

`

Kodien version : 6.5.4

@mubaracktahir
Copy link

I also had a similar issue mine was at runtime, it says "can't find ForecastDatabase_impl"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants