FlowFan
01/02/2025, 12:37 PMerror: Unresolved reference 'module'.
I also found the code generated by ksp in the build directory.This is my code:
// in iosMain
@Module
object PlatformModule {
}
actual fun KoinApplication.platformModule(): KoinApplication =
modules(PlatformModule.module)
koin=4.0.1
koin-annotations=1.4.0
kotlin=2.1.0FlowFan
01/02/2025, 12:45 PMFlowFan
01/03/2025, 2:03 AM// in commonMain
@Module
expect object PlatformModule
// in iosMain
@Module
actual object PlatformModule