Skip to content

Commit f6a8452

Browse files
mweststratealloy
authored andcommittedMar 11, 2020
Bump FlipperKit version on iOS to be compatible with react-native-flipper (#28277)
Summary: This pull request re-applies #28225, thereby reverting 4bb1794, this time bumping to FlipperKit 0.33.1 which is again compatible with iOS 9 (thanks to facebook/flipper#874) This is the iOS counterpart of #28275 [iOS] [Changed] - Upgrade Flipper dependency to 0.33.1 Pull Request resolved: #28277 Test Plan: * Bumped the version in our Flipper / RN integration test app first, that runs on 0.62-rc.5, verified everything still works there. * CI ![Screen Shot 2020-03-10 at 12 12 46](https://user-images.githubusercontent.com/1820292/76311312-94f09f00-62c8-11ea-81db-ced6d16e096b.png) Reviewed By: mweststrate Differential Revision: D20369106 Pulled By: TheSavior fbshipit-source-id: dfeb0446e7f29684a266eca5d0e29ac42cef2ef3
1 parent e8a368c commit f6a8452

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed
 

‎scripts/autolink-ios.rb

+1-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,7 @@ def use_react_native! (options={})
5757
end
5858
end
5959

60-
def add_flipper_pods!
61-
version = '~> 0.30.0'
60+
def add_flipper_pods!(version = '~> 0.33.1')
6261
pod 'FlipperKit', version, :configuration => 'Debug'
6362
pod 'FlipperKit/FlipperKitLayoutPlugin', version, :configuration => 'Debug'
6463
pod 'FlipperKit/SKIOSNetworkPlugin', version, :configuration => 'Debug'

‎template/ios/Podfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ platform :ios, '9.0'
22
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
33

44
def add_flipper_pods!
5-
version = '~> 0.30.2'
5+
version = '~> 0.33.1'
66
pod 'FlipperKit', version, :configuration => 'Debug'
77
pod 'FlipperKit/FlipperKitLayoutPlugin', version, :configuration => 'Debug'
88
pod 'FlipperKit/SKIOSNetworkPlugin', version, :configuration => 'Debug'

0 commit comments

Comments
 (0)
Please sign in to comment.