Added
https://github.com/nazrdogan/Ti.FSCalendar
to my hyperloop enabled project
Running on simulator / device works fine.
Packaging for distribution fails:
[TRACE] ** ARCHIVE SUCCEEDED **
[INFO] Packaging for Ad Hoc distribution
[DEBUG] Packaging IPA for target dist-adhoc
[DEBUG] Running: /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -exportArchive -archivePath "/Users/xxx/Documents/Appcelerator_Studio_Workspace/coma/build/iphone/coma.xcarchive" -exportPath "/Users/xxx/Documents/Appcelerator_Studio_Workspace/coma/dist" -exportOptionsPlist "/Users/xxx/Documents/Appcelerator_Studio_Workspace/coma/build/iphone/export_options.plist"
[TRACE] 2019-02-08 15:34:17.266 xcodebuild[2732:180519] [MT] IDEDistribution: -[IDEDistributionLogging _createLoggingBundleAtPath:]: Created bundle at path '/var/folders/jj/btws0lyx7tv_13qk3cpnfjc00000gn/T/coma_2019-02-08_15-34-17.265.xcdistributionlogs'.
[TRACE] error: exportArchive: Failed to verify bitcode in FSCalendar.framework/FSCalendar:
[TRACE] error: Bundle only contains bitcode-marker /var/folders/jj/btws0lyx7tv_13qk3cpnfjc00000gn/T/XcodeDistPipeline.xAu/Root/Payload/coma.app/Frameworks/FSCalendar.framework/FSCalendar (arm64)
[TRACE]
[TRACE]
[TRACE]
[TRACE] Error Domain=IDEFoundationErrorDomain Code=1 "Failed to verify bitcode in FSCalendar.framework/FSCalendar:
[TRACE] error: Bundle only contains bitcode-marker /var/folders/jj/btws0lyx7tv_13qk3cpnfjc00000gn/T/XcodeDistPipeline.xAu/Root/Payload/coma.app/Frameworks/FSCalendar.framework/FSCalendar (arm64)
[TRACE]
[TRACE] " UserInfo={NSLocalizedDescription=Failed to verify bitcode in FSCalendar.framework/FSCalendar:
[TRACE] error: Bundle only contains bitcode-marker /var/folders/jj/btws0lyx7tv_13qk3cpnfjc00000gn/T/XcodeDistPipeline.xAu/Root/Payload/coma.app/Frameworks/FSCalendar.framework/FSCalendar (arm64)
[TRACE]
[TRACE] }
[ERROR] Failed to export archive to ipa
Opening the xcodeproj file in build folder it indicates a missing umbrella header:
'FSCalendar/FSCalendar-umbrella.h' file not found
As you can see in the attached screenshots, the "missing" file is located in the pod directory..
The error message indicates that this is an issue with bitcode. Take a look at our docs in the iOS Hyperloop guide under [CocoaPods](https://docs.appcelerator.com/platform/latest/#!/guide/iOS_Hyperloop_Programming_Guide-section-src-46253491_iOSHyperloopProgrammingGuide-CocoaPods) you'll find a note about bitcode enabled frameworks. Our iOS project has bitcode disabled by default, so you need to disable it for the framework as well.
[~tw], Did you find our last reply helpful for your progress? Let us know the updates from your end.
Yes, works for me now. (Also I use a modified plist - setting bitcode to false - to get my adhoc ipa extracted and signed)