Skip to content
This repository has been archived by the owner on Nov 22, 2024. It is now read-only.

Commit

Permalink
Add necessary dependency
Browse files Browse the repository at this point in the history
Summary:
SZip and AVFoundation.

Both already used by the WWW certificate provider.

Reviewed By: elboman

Differential Revision: D54065397

fbshipit-source-id: 41639c20cd71afcab19c25c6d870964cd71899f1
  • Loading branch information
lblasa authored and facebook-github-bot committed Mar 13, 2024
1 parent 07ef985 commit 0e0ee06
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions FlipperKit.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ Pod::Spec.new do |spec|
ss.dependency 'FlipperKit/FKPortForwarding'
ss.dependency 'Flipper', '~>'+flipperkit_version
ss.dependency 'SocketRocket', '~> 0.7.0'
ss.dependency 'SSZipArchive', '~> 2.4.3'
ss.compiler_flags = folly_compiler_flags
ss.source_files = 'iOS/FlipperKit/*.{h,m,mm}', 'iOS/FlipperKit/CppBridge/*.{h,mm}'
ss.public_header_files = 'iOS/FlipperKit/**/{FlipperDiagnosticsViewController,FlipperStateUpdateListener,FlipperClient,FlipperPlugin,FlipperConnection,FlipperResponder,SKMacros,FlipperKitCertificateProvider}.h'
Expand Down
1 change: 1 addition & 0 deletions iOS/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@ target 'FlipperKit' do
pod 'Flipper-Folly', '~>2.2'
pod 'CocoaAsyncSocket', '~>7.6'
pod 'SocketRocket', '~> 0.7.0'
pod 'SSZipArchive', '~> 2.4.3'

end
9 changes: 5 additions & 4 deletions iOS/Sample/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ target 'Sample' do
platform :ios, '11.0'

# See docs/getting-started/ios-native.mdx
pod 'FlipperKit', :path => '../../FlipperKit.podspec', :configuration => 'Debug'
pod 'FlipperKit/FlipperKitLayoutPlugin', :path => '../../FlipperKit.podspec', :configuration => 'Debug'
pod 'FlipperKit/FlipperKitUIDebuggerPlugin', :path => '../../FlipperKit.podspec', :configuration => 'Debug'
pod 'FlipperKit', :path => '../../FlipperKit.podspec', :configuration => 'Debug'
pod 'FlipperKit/FlipperKitLayoutPlugin', :path => '../../FlipperKit.podspec', :configuration => 'Debug'
pod 'FlipperKit/FlipperKitUIDebuggerPlugin', :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'
Expand All @@ -23,5 +23,6 @@ target 'Sample' do
pod 'OpenSSL-Universal', :configuration => 'Debug'
pod 'CocoaAsyncSocket', :configuration => 'Debug'
pod 'SocketRocket', '~> 0.7.0'

pod 'SSZipArchive', '~> 2.4.3'

end

0 comments on commit 0e0ee06

Please sign in to comment.