Post

Replies

Boosts

Views

Activity

Reply to Export Localizations Build Error on Specific Pod's Umbrella.h File
Solved my issue. Apparently, each pod target must define a module, and this setting is not turned on by default. Not sure why this is only required for string export. I adjusted my Podfile by adding a post-install hook and changing the Pods project setting to YES, then re-running pod install. After that, I was able to export strings for localization without issue and all other builds continue to work just fine. Hope this helps. post_install do |pi| pi.pods_project.build_configurations.each do |config| config.build_settings['DEFINES_MODULE'] = 'YES' end end
Aug ’23