Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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.

like image 912
Kiran Avatar asked Jun 16 '15 12:06

Kiran


People also ask

Can I update to an older version of iOS?

Yes, it is possible. Software Update, either on the device or via iTunes, will offer the latest version that is supported by your device.

Where can I get older iOS versions?

Downgrade iOS: Where to find old iOS versions Visit ipsw.me, a site that specializes in hosting older versions of iOS; the versions that will work on your iPhone will be designated with a green check mark.

How do I download an older version of iOS software?

You will need an iPhone Software File (IPSW) to manually install the older version of iOS. Try https://ipsw.me, a known reliable source for iOS software downloads. If you can't find the version you want there, you can search the web for the version of iOS you want and "IPSW."

Can I install a previous version of iOS IPAD?

If you have an existing iCloud or iTunes backup of your data, your data can be restored after reinstalling the previous version of iOS/iPadOS. You'll need access to a PC (with iTunes installed) or a Mac (with iTunes or Finder - as appropriate for the installed version of macOS).


1 Answers

Found this recently, which seems to imply that you need to enable bitcode for each framework.

"Xcode 7 has a ENABLE_BITCODE option to embed bitcode in apps, app extensions, and frameworks. The option is turned on by default for iOS and is mandatory for watchOS projects submitted to the store. When bitcode is enabled for a target, all the objects, static libraries and user frameworks used when linking that target must contain bitcode. Otherwise, an error or a warning will be issued by the linker. (Note: missing bitcode is currently a warning for iOS, but it will become an error in an upcoming beta release of Xcode 7.) ENABLE_BITCODE should be consistently turned on for all the targets. If you use a library or framework provided by a third party, please contact the vendor for an updated version which contains bitcode." Dear God, do we need to wait for all libs to update? :S

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.

bitcode

like image 116
Tommie C. Avatar answered Sep 23 '22 04:09

Tommie C.