Files
flipper/iOS/Sample/Podfile
Pritesh Nandgaonkar d931a563d1 Version bump to 0.6.14
Summary: Version bump 0.6.14

Reviewed By: passy

Differential Revision: D9081956

fbshipit-source-id: 165f051bb762b00080a3447ac336031bdae01d39
2018-07-31 09:56:15 -07:00

24 lines
694 B
Ruby

project 'Sample.xcodeproj'
source 'https://github.com/facebook/Sonar.git'
source 'https://github.com/CocoaPods/Specs'
swift_version = "4.1"
sonarkit_version = '0.6.14'
target 'Sample' do
pod 'SonarKit', '~>'+sonarkit_version
pod 'SonarKit/SonarKitLayoutComponentKitSupport', '~>'+sonarkit_version
pod 'SonarKit/SKIOSNetworkPlugin', '~>'+sonarkit_version
post_install do |installer|
installer.pods_project.targets.each do |target|
if ['YogaKit'].include? target.name
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = swift_version
end
end
end
end
end