The new Koin plugin doesn’t seem to handle Multiplatform well. If you have an expect/actual module which defines some class, then that class will show up as missing in the plugin.
Copy code
expect val platformModule: Module
actual val platformModule: Module =
module {
single {
val path = get<Context>().getDatabasePath("db.db").absolutePath
Room.databaseBuilder(get(), AppDatabase::class.java, path)
}
}
My apologies if this is already reported somewhere 🙂