Thanks for that! (also works for Realm BTW) - too bad v1.5 causes that much trouble …
The script looks like this then (just to make sure - this one works):
platform :ios, ‘11.0’
target ‘RxSwiftPlayground’ do
use_frameworks!
Pods for RxSwiftPlayground
pod ‘RxSwift’, ‘~> 4.0’
end
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
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings[‘CONFIGURATION_BUILD_DIR’] = ‘$PODS_CONFIGURATION_BUILD_DIR’
end
end
end