Recently i downloaded xcode 7 beta and facing the error:
-fembed-bitcode is not supported on versions of iOS prior to 6.0
Is there any work around to fix this issue with out changing deployment target?
Thanks in advance.
Recently i downloaded xcode 7 beta and facing the error:
-fembed-bitcode is not supported on versions of iOS prior to 6.0
Is there any work around to fix this issue with out changing deployment target?
Thanks in advance.
I was trying to run the AudioModem code (set to target iOS 5.1) on an iOS 9.1 device. For me, simply changing the deployment target of the app to 9.0 (incredibly!) worked (somehow without introducing other errors?!).
Found this recently, which seems to imply that you need to enable bitcode for each framework.
Source (link)
If you don't plan to support Apple Watch you can turn off the option by searching for BITCODE in the project and the target. Change the option to No.