Good day! Let's say I create a XCFramework from KM...
# ios
s
Good day! Let's say I create a XCFramework from KMP module this way:
Copy code
val xcf = XCFramework()
    listOf(
      iosArm64(),
      tvosArm64()
    ).forEach {
        it.binaries.framework {
            baseName = project.name
            xcf.add(this)
            isStatic = true
        }
    }
And let's say I have a Swift file that add some code. Is it possible to bundle it inside that XCFramework? Thanks!
Yes, but no. your swift methods exposed in your files must be compatible to ObjC
s
Wow thanks @François! I feel... dump 🤦🏻‍♂️ 🤪 But yeah I get it! I'll see if that is possible Thanks again!