-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Bitcode error on iOS 9.0 (Xcode 7 Beta 6) #2205
Comments
This bitcode issue will be because we're not building our static library with Xcode 7. Travis just announced beta support for Xcode 7 and iOS 9 should ship around the second week of September, so it would be nice to get this moving. @tomtaylor In the meantime, set |
Thanks @friedbunny - I had to add the following to my post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end |
Keep your eyes peeled for 2.1.1 shortly @tomtaylor, which should fix this when we land #2238 and build the release with Xcode 7. |
We've had to remove bitcode support and release v2.1.2 because of Xcode 7 issues: #2332 |
Thanks for the |
The Podfile tip didn't work for me here using Xcode 7, I had problems with others libs. I'm still waiting the new Mapbox version to start to know this beauty |
@thiagoross You may need to wipe out your |
Any build after #2903 should come with proper support for Bitcode in Xcode 7. If you’re open to using a prerelease, that’d be v3.0.0-pre.4 or any more recent build. |
Which, BTW, you could get via a pod 'Mapbox-iOS-SDK', :podspec => 'https://raw.githubusercontent.com/mapbox/mapbox-gl-native/ios-v3.0.0-pre.4/ios/Mapbox-iOS-SDK.podspec' |
Closing per #2205 (comment). A Bitcode-less build will also be available via #3003. |
When compiling my application for iOS 9.0 (Xcode 7 Beta 6), I see the following build error:
I'm using MapboxGL through Cocoapods, setting the podspec to
https://raw.githubusercontent.com/mapbox/mapbox-gl-native/ios-v2.1.0-pre.2/ios/Mapbox-iOS-SDK.podspec
.Let me know if I can provide any more info.
The text was updated successfully, but these errors were encountered: