Files
flipper/iOS/Sample/Podfile
Pritesh Nandgaonkar da851bd7e6 Change modulename to FlipperKit
Summary: Change modulename to FlipperKit

Reviewed By: passy

Differential Revision: D9940793

fbshipit-source-id: ea3c6633c481e29fc192cea7465fe3a93cf28f87
2018-09-19 08:29:43 -07:00

23 lines
753 B
Ruby

project 'Sample.xcodeproj'
source 'https://github.com/facebook/Sonar.git'
source 'https://github.com/CocoaPods/Specs'
swift_version = "4.1"
target 'Sample' do
pod 'FlipperKit', :path => '../../SonarKit.podspec'
pod 'FlipperKit/SonarKitLayoutComponentKitSupport', :path => '../../SonarKit.podspec'
pod 'FlipperKit/SKIOSNetworkPlugin', :path => '../../SonarKit.podspec'
pod 'Sonar', :path => '../../Sonar.podspec'
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