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
26 lines
1.3 KiB
Ruby
26 lines
1.3 KiB
Ruby
project 'Sample.xcodeproj'
|
|
source 'https://github.com/facebook/flipper.git'
|
|
source 'https://github.com/CocoaPods/Specs'
|
|
|
|
target 'Sample' do
|
|
platform :ios, '9.0'
|
|
|
|
# See docs/getting-started/ios-native.mdx
|
|
pod 'FlipperKit', :path => '../../FlipperKit.podspec', :configuration => 'Debug'
|
|
pod 'FlipperKit/FlipperKitLayoutComponentKitSupport', :path => '../../FlipperKit.podspec', :configuration => 'Debug'
|
|
pod 'FlipperKit/SKIOSNetworkPlugin', :path => '../../FlipperKit.podspec', :configuration => 'Debug'
|
|
pod 'FlipperKit/FlipperKitUserDefaultsPlugin', :path => '../../FlipperKit.podspec', :configuration => 'Debug'
|
|
pod 'FlipperKit/FlipperKitExamplePlugin', :path => '../../FlipperKit.podspec', :configuration => 'Debug'
|
|
pod 'FlipperKit/FlipperKitReactPlugin', :path => '../../FlipperKit.podspec', :configuration => 'Debug'
|
|
pod 'Flipper', :path => '../../Flipper.podspec', :configuration => 'Debug'
|
|
pod 'Flipper-DoubleConversion', :configuration => 'Debug'
|
|
pod 'Flipper-Folly', :configuration => 'Debug'
|
|
pod 'Flipper-Glog', :configuration => 'Debug'
|
|
pod 'Flipper-PeerTalk', :configuration => 'Debug'
|
|
pod 'CocoaLibEvent', :configuration => 'Debug'
|
|
pod 'boost-for-react-native', :configuration => 'Debug'
|
|
pod 'OpenSSL-Universal', :configuration => 'Debug'
|
|
pod 'CocoaAsyncSocket', :configuration => 'Debug'
|
|
pod 'ComponentKit', '~> 0.30'
|
|
end
|