I've recently migrated from cocoapods to an embedd...
# multiplatform
c
I've recently migrated from cocoapods to an embedded framework for iOS, following on from John O'Reillys post here. Its working nice, but wonder if anyone can help me with mapping build types from kotlin to ios. In the cocoapods plugin, I could define something like the following in the `CocoapodsExtension`:
Copy code
xcodeConfigurationToNativeBuildType["Debug"]= NativeBuildType.DEBUG
        xcodeConfigurationToNativeBuildType["Snapshot"]= NativeBuildType.DEBUG
        xcodeConfigurationToNativeBuildType["Release"]= NativeBuildType.RELEASE
        xcodeConfigurationToNativeBuildType["Production"]= NativeBuildType.RELEASE
However I'm not sure how I can do this when just embedding a framework. Wondering if anyone has any ideas or can point me to the relevant docs?
y
anything in here ? 🙂