Xcode - Error ITMS-90635 - Invalid Mach-O in bundle - submitting to App store

前端 未结 7 1377
野性不改
野性不改 2020-12-07 13:03

I just got this error when submitting an app to the app store.

Does this mean I need to set ENABLE_BITCODE for all dependencies? I tried that but then got e

7条回答
  •  爱一瞬间的悲伤
    2020-12-07 13:49

    I had the same problem earlier this morning. In fact the answer is in the error : "Verify that all of the targets for a platform have a consistent value for the ENABLE_BITCODE build settings"

    I had a target (with ENABLE_BITCODE set to NO), using multiple pods having ENABLE_BITCODE set to YES. So, all I had to, do is set ENABLE_BITCODE to YES in my project target. But I guess you have a choice, you can also set ENABLE_BITCODE to NO in all the libs your are using.

提交回复
热议问题