30 lines
920 B
Ruby
30 lines
920 B
Ruby
platform :ios, '15.6'
|
|
|
|
target 'ReadViewDemo' do
|
|
# Comment the next line if you don't want to use dynamic frameworks
|
|
use_frameworks!
|
|
pod 'RDReaderView', :path => '..'
|
|
|
|
end
|
|
|
|
post_install do |installer|
|
|
apply_settings = lambda do |config|
|
|
config.build_settings['ENABLE_USER_SCRIPT_SANDBOXING'] = 'NO'
|
|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.6'
|
|
end
|
|
|
|
# Pods project (Pods.xcodeproj)
|
|
installer.pods_project.build_configurations.each { |c| apply_settings.call(c) }
|
|
installer.pods_project.targets.each { |t| t.build_configurations.each { |c| apply_settings.call(c) } }
|
|
|
|
# User project(s) that integrate Pods (e.g. ReadViewDemo)
|
|
installer.aggregate_targets.each do |at|
|
|
p = at.user_project
|
|
next unless p
|
|
|
|
p.build_configurations.each { |c| apply_settings.call(c) }
|
|
p.targets.each { |t| t.build_configurations.each { |c| apply_settings.call(c) } }
|
|
p.save
|
|
end
|
|
end
|