Summary: Releases a new iOS version 0.6.16. After landing this I will release 0.6.16 tag on github Reviewed By: danielbuechele Differential Revision: D9194965 fbshipit-source-id: 13d5e346d6d34a7bf7b6dfb568ca622d97660132
24 lines
694 B
Ruby
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.16'
|
|
|
|
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
|