18 lines
386 B
Ruby
18 lines
386 B
Ruby
platform :ios, '15.0'
|
|
use_frameworks!
|
|
|
|
workspace 'ReadViewSDK.xcworkspace'
|
|
project 'ReadViewSDK.xcodeproj'
|
|
|
|
target 'ReadViewSDK' do
|
|
pod 'RDReaderView', :path => '..'
|
|
end
|
|
|
|
post_install do |installer|
|
|
installer.pods_project.targets.each do |target|
|
|
target.build_configurations.each do |config|
|
|
config.build_settings['ENABLE_USER_SCRIPT_SANDBOXING'] = 'NO'
|
|
end
|
|
end
|
|
end
|