当我将 Koin 添加到项目中时,我不断遇到以下错误。 StandAloneContext Koin instance is null
implementation 'org.koin:koin-android:1.0.2'
模块.kt
val UIModule: Module = module {
factory<MainContract.Presenter> { MainPresenter() }
}
val appModules = listOf(UIModule)
应用程序.kt
class App : Application() {
private val TAG : String = Application::class.java.name
override fun onCreate() {
super.onCreate()
startKoin(this, appModules)
}
}