Posts

Post not yet marked as solved
2 Replies
I just noticed that progress.fractionCompleted is returning a useful result. I can show a real progress update now. This was while building with Xcode 14.3.1 running on iOS 16.5.1. I'm unsure how long this has been working.
Post not yet marked as solved
44 Replies
If you are using Cocoapods, this previous post worked well for our project: We do not use any obj-c code in our project, so our solution was to set the Code Block SWIFT_INSTALL_OBJC_HEADER build setting to 'NO' for all the pods in the post_install hook of cocoapods. Here is an example – at the end of our Podfile: # CocoaPods With conflicting symbol nameds PodsWithConflictingSymbolNames = [ 'CognoaUIKit', 'Macaw', ] ## Pods settings. post_install do |installer| installer.generated_projects.each do |project| project.targets.each do |target| if PodsWithConflictingSymbolNames.include? target.name target.build_configurations.each do |config| config.build_settings['SWIFT_INSTALL_OBJC_HEADER'] = 'NO' end end end end end