Summary: Renames xcodeproj file Reviewed By: passy Differential Revision: D9947704 fbshipit-source-id: 057d849c1b20ced228f43e42938f4fbffd1c1794
21 lines
607 B
Ruby
21 lines
607 B
Ruby
# Uncomment the next line to define a global platform for your project
|
|
source 'https://github.com/facebook/Sonar.git'
|
|
source 'https://github.com/CocoaPods/Specs'
|
|
platform :ios, '9.0'
|
|
swift_version = "4.1"
|
|
target 'FlipperKit' do
|
|
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
|
|
# use_frameworks!
|
|
|
|
project 'FlipperKit.xcodeproj'
|
|
pod 'Sonar', :path => '../Sonar.podspec'
|
|
# Pods for SonarKit
|
|
pod 'PeerTalk', '~>0.0'
|
|
pod 'RSocket', '~>0.10'
|
|
pod 'DoubleConversion', '~>1.1'
|
|
pod 'glog', '~>0.3'
|
|
pod 'Folly', '~>1.0'
|
|
pod 'CocoaAsyncSocket', '~>7.6'
|
|
|
|
end
|