1
1
mirror of https://github.com/exyte/Macaw.git synced 2024-09-11 13:15:35 +03:00

Example podfile fix

This commit is contained in:
Victor Sukochev 2016-09-22 14:34:43 +06:00
parent 2a9bb9a4f1
commit c0183a7a32

View File

@ -3,3 +3,11 @@ use_frameworks!
target 'Example' do
pod 'Macaw', :path => '../'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '2.3'
end
end
end