Alexis
11/19/2025, 4:11 PMCan't show file for stack frame : <DBGLLDBStackFrame: 0x9e7761cc0> - stackNumber:1 - name:kfun:org.koin.core.context.MutableGlobalContext#<init>(){} [inlined]. The file path does not exist on the file system: /Users/runner/work/koin/koin/projects/core/koin-core/src/nativeMain/kotlin/org/koin/core/context/GlobalContext.ktMessage from debugger: killed
when initializing Koin.
Kotlin side:
class DependencyProvider {
fun initKoin() {
RendrLog.logInfo(this::class.simpleName, "Initializing Koin...")
val instance = startKoin {
modules(Modules.features)
}
koin = instance.koin
}
companion object {
lateinit var koin: Koin
}
}
XCode side:
public struct DIHelper {
public static func initKoint() {
let koinDependencyHelper = DependencyProvider()
koinDependencyHelper.doInitKoin()
}
}
Everything was working previously when importing my shared kotlin code my Scheme > Build > Pre-action > script running "embedAndSignAppleFrameworkForXcode"
I could't find any link about this error, so I wanted to know if anyone already encountered this error, or if you have an idea? 🙂
Have a nice dayarnaud.giuliani
11/21/2025, 4:44 PM