2

I am trying to submit a new version of one of my client's apps to itunes connect, but I am getting this weird error

-fembed-bitcode is not supported on versions of iOS prior to 6.0

This is the first time I am submitting a new version of this app using Xcode 7, I've always submitted new versions of the app fine in the past with Xcode 6.

user102008
  • 30,736
  • 10
  • 83
  • 104
MrDevRI
  • 233
  • 2
  • 11

1 Answers1

3

Bitcode is a new iOS feature that supports dynamic recompilation of uploaded binaries to support future devices and hardware configurations by Apple.

There is an option in Xcode 7 under Build Settings > Build Options called Enable Bitcode where it can be enabled or disabled for your app.

Additionally, there is a setting in iTunes Connect for your apps under Pricing and Availability > Bitcode-Auto-Recompilation that you can set for your app.

Daniel Zhang
  • 5,778
  • 2
  • 23
  • 28