Sebastien Leclerc Lavallee
07/05/2020, 4:31 AMld: bitcode bundle could not be generated because '/shared42/build/cocoapods/framework/shared42.framework/shared42(result.o)' was built without full bitcode. All object files and libraries for bitcode must be generated from Xcode Archive or Install build file '/shared42/build/cocoapods/framework/shared42.framework/shared42' for architecture arm64
I was using the packForXcode
task way before (with embedding the .framework directly, working fine) but now I moved to cocoapods way and I get this error. How do we enable bitcode ?
Thanks!svyatoslav.scherbina
07/08/2020, 11:08 AMSebastien Leclerc Lavallee
07/08/2020, 1:57 PMif (iosPreset == presets.iosX64) {
embedBitcode("disable")
} else {
embedBitcode("bitcode")
}
And I removed that 🤔 that’s probably the case
Thanks for the answer!