Skip to content
This repository has been archived by the owner on Apr 3, 2020. It is now read-only.

set SWIFT_VERSION in post_install #76

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions AppShell/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,11 @@ use_frameworks!
target 'AppShell' do
pod 'crosswalk-ios', :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