Summary: A few people reported issues due to the previous repo name (`Sonar`) being referenced in the Podfile. - https://github.com/facebook/react-native/issues/27565 - https://github.com/facebook/react-native/issues/29251 - https://github.com/facebook/flipper/issues/1321 This PR updates it to the current name (`flipper`). Please let me know if these updates are also needed for the files under `Specs/Flipper/**/Flipper.podspec` (not sure what the purpose is). Pull Request resolved: https://github.com/facebook/flipper/pull/1528 Reviewed By: nikoant Differential Revision: D23730546 Pulled By: passy fbshipit-source-id: b4d776f44a054f3fe8b793ca36a8fbc8835e5d04
21 lines
637 B
Ruby
21 lines
637 B
Ruby
# Uncomment the next line to define a global platform for your project
|
|
source 'https://github.com/facebook/flipper.git'
|
|
source 'https://github.com/CocoaPods/Specs'
|
|
platform :ios, '10.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 'Flipper-PeerTalk', '~>0.0'
|
|
pod 'Flipper-RSocket', '~>1.1'
|
|
pod 'DoubleConversion', '~>1.1'
|
|
pod 'glog', '~>0.3'
|
|
pod 'Flipper-Folly', '~>2.2'
|
|
pod 'CocoaAsyncSocket', '~>7.6'
|
|
|
|
end
|