Skip to content

Instantly share code, notes, and snippets.

@fergdev
Created September 14, 2024 03:45
Show Gist options
  • Save fergdev/d6ceb8977ef4d97791c54dfbf1e8eee0 to your computer and use it in GitHub Desktop.
Save fergdev/d6ceb8977ef4d97791c54dfbf1e8eee0 to your computer and use it in GitHub Desktop.
Koin Mobile Module
// commonMain
expect val platformModule: Module
val sharedModule = module {
includes(platformModule)
}
// mobileMain
actual val platformModule = module {
singleOf(::DataRepository) { bind<IDataRepository>() }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment