Hi, I'm trying to integrate kermit in my KMM proje...
# kotlin-native
u
Hi, I'm trying to integrate kermit in my KMM project, but to do that, first I need to convert the KMM iOS XCFramework from dynamic to static. I have done it by doing so
Copy code
listOf(
        iosX64(),
        iosArm64(),
        //iosSimulatorArm64() sure all ios dependencies support this target
    ).forEach {
        it.binaries.framework {
            baseName = "shared"
            isStatic = true
        }
    }
The problem is that when I make this change, I got 5000 warnings when building the iOS project. Any idea why? By the way, I'm not using cocoapods. ``````
Those are the errors that I'm getting
j
I don't understand what you are trying to do. I included kermit in my project and I didn't need to do anything special, just included the dependency, and in my Koin setup I also included a single version for when I want to inject it. You can look at John O'Reilly's projects as he uses kermit also.