Skip to content

Instantly share code, notes, and snippets.

@wadva474
Created August 13, 2023 22:01
Show Gist options
  • Save wadva474/18c3fab184145d1ddc44c6d20b9569c4 to your computer and use it in GitHub Desktop.
Save wadva474/18c3fab184145d1ddc44c6d20b9569c4 to your computer and use it in GitHub Desktop.
//In the IOS shared Module
object KoinIos {
fun initialize(): KoinApplication = initKoin(
appModule = module {
}
)
}
fun Koin.get(objCClass: ObjCClass): Any {
val klass = getOriginalKotlinClass(objCClass)!!
return get(klass, null, null)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment