Files
flipper/iOS/Podfile
Pritesh Nandgaonkar f8bd473828 Use Folly and RSocket from cocoapods (#379)
Summary:
I have released pods for Folly and RSocket on cocoapods. Thus we won't need to host different versions of these pods on our repository. I haven't removed those pods from `Specs` folder, as the current users of `0.16.2` would still be referring the Specs folder on the master branch. I will remove the specs folder once, all our pods are on cocoapods and we no longer need to host any pods.
Pull Request resolved: https://github.com/facebook/flipper/pull/379

Reviewed By: jknoxville

Differential Revision: D14185931

Pulled By: priteshrnandgaonkar

fbshipit-source-id: ea285024123e41c2d110827e26f79a72ef22c008
2019-02-26 04:18:00 -08:00

21 lines
627 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 'Flipper', :path => '../Flipper.podspec'
# Pods for SonarKit
pod 'PeerTalk', '~>0.0'
pod 'Flipper-RSocket', '~>0.10'
pod 'DoubleConversion', '~>1.1'
pod 'glog', '~>0.3'
pod 'Flipper-Folly', '~>1.2'
pod 'CocoaAsyncSocket', '~>7.6'
end