error: Invalid bitcode version (Producer: '800.0.35.0_0' Reader: '703.0.31_0')

前端 未结 7 1509
無奈伤痛
無奈伤痛 2020-11-30 08:24

When I try to Archive my application on Xcode 7.3.1, I am getting following error:

error: Invalid bitcode version (Producer: \'800.0.35.0_0\' Reader:

7条回答
  •  青春惊慌失措
    2020-11-30 09:14

    good solutions, but disabling bitcode worked for some people.

    edit :- it worked for me too. but in future your app might be in problem or (build not optimised by Appstore) if your project is **Bitcode Disable **.

    Bitcode is an intermediate representation of a compiled program. Apps you upload to iTunes Connect that contain bitcode will be compiled and linked on the App Store. Including bitcode will allow Apple to re-optimize your app binary in the future without the need to submit a new version of your app to the store.

    Note: For iOS apps, bitcode is the default, but optional. If you provide bitcode, all apps and frameworks in the app bundle need to include bitcode. For watchOS apps, bitcode is required

    So thats why try to figure out error solutions right way.

提交回复
热议问题