Realm - Building Modern Swift Apps : Script Error

Another update on this:
We’ll be releasing relatively soon an updated Playgrounds edition that doesn’t rely on CocoaPods at all. For the time being, with the existing version there are two workarounds :

  1. Use CocoaPods 1.4 instead of 1.5
  2. If you must use 1.5, you can add the following at the end of your Podfile:
# Workaround for Cocoapods issue #7689
post_install do |installer|
    installer.pods_project.build_configurations.each do |config|
        config.build_settings.delete('CODE_SIGNING_ALLOWED')
        config.build_settings.delete('CODE_SIGNING_REQUIRED')
    end
end
1 Like