Skip to content

Commit f48f45a

Browse files
committed
Bump Flipper to 0.204.0
1 parent 823839b commit f48f45a

File tree

4 files changed

+99
-137
lines changed

4 files changed

+99
-137
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Version of flipper SDK to use for this integration
2-
FLIPPER_VERSION=0.182.0
3-
FLIPPER_FRESCO_VERSION=3.0.0
2+
FLIPPER_VERSION=0.201.0
3+
FLIPPER_FRESCO_VERSION=3.0.0

packages/react-native/scripts/cocoapods/__tests__/flipper-test.rb

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,6 @@ def test_postInstall_updatesThePodCorrectly
7777
flipper_post_install(installer)
7878

7979
# Assert
80-
yoga_target = installer.target_with_name("YogaKit")
81-
yoga_target.build_configurations.each do |config|
82-
assert_equal(config.build_settings['SWIFT_VERSION'], '4.1')
83-
end
8480

8581
reactCore_target = installer.target_with_name("React-RCTAppDelegate")
8682
reactCore_target.build_configurations.each do |config|
@@ -129,14 +125,6 @@ def check_flipper_pod(name, expectedVersion, expectedConfigurations)
129125
def prepare_mocked_installer
130126
return InstallerMock.new(
131127
PodsProjectMock.new([
132-
TargetMock.new(
133-
"YogaKit",
134-
[
135-
BuildConfigurationMock.new("Debug", is_debug: true),
136-
BuildConfigurationMock.new("Release", is_debug: false),
137-
BuildConfigurationMock.new("CustomConfig", is_debug: true),
138-
]
139-
),
140128
TargetMock.new(
141129
"React-Core",
142130
[

packages/react-native/scripts/cocoapods/flipper.rb

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Default versions of Flipper and related dependencies.
77
# Update this map to bump the dependencies.
88
$flipper_default_versions = {
9-
'Flipper' => '0.182.0',
9+
'Flipper' => '0.201.0',
1010
'Flipper-Boost-iOSX' => '1.76.0.1.11',
1111
'Flipper-DoubleConversion' => '3.2.0.1',
1212
'Flipper-Fmt' => '7.1.7',
@@ -64,18 +64,11 @@ def use_flipper_pods(versions = {}, configurations: ['Debug'])
6464
end
6565

6666
# Applies some changes to some pods of the project:
67-
# * it sets the Swift version for Yoga kit to 4.1
6867
# * it sets the sonar-kit flag to React-Core pod
6968
#
7069
# @parameter installer: the installer object used to install the pods.
7170
def flipper_post_install(installer)
7271
installer.pods_project.targets.each do |target|
73-
if target.name == 'YogaKit'
74-
target.build_configurations.each do |config|
75-
config.build_settings['SWIFT_VERSION'] = '4.1'
76-
end
77-
end
78-
7972
# Enable flipper for React-RCTAppDelegate Debug configuration
8073
if target.name == 'React-RCTAppDelegate'
8174
target.build_configurations.each do |config|

0 commit comments

Comments
 (0)