Hi, We have a KMM SDK. when we implement this with...
# multiplatform
v
Hi, We have a KMM SDK. when we implement this with ios project that has debug / release build type... it works fine... but when we have a custom build type it didn't work.. as mentioned in the documentation... we need to insert
Copy code
xcodeConfigurationToNativeBuildType["Staging"] = org.jetbrains.kotlin.gradle.plugin.mpp.NativeBuildType.DEBUG
in cocoapods configuration... This is fine if we have a in house sdks... but if we are publishing this library to outside users. it is not possible to know their build types... then how to handle this kind of issues... ?
We also tried just generating xcframework with the debug frameworks and implement in ios project but that just worked with the debug build type... is there any other way to generate a xcframeword that is compatible whatever the ios app build type is
t
hey @Venkataramanan Parameswaran found any workaround for this issue? also can you share the documentation where it says to insert the
xcodeConfigurationToNativeBuildType["Staging"]