I’m getting an error that Koin is not correctly co...
# koin
s
I’m getting an error that Koin is not correctly configured. java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.cakesapimvvm/com.example.cakesapimvvm.MainActivity}: java.lang.IllegalStateException: No Koin Context configured. Please use startKoin or koinApplication DSL. class MyApp: Application() { override fun onCreate() { super.onCreate() startKoin { androidContext(this@MyApp) androidLogger(Level.DEBUG) modules(viewModelModule, repositoryModule, netModule, apiModule, databaseModule ) } } }