Skip to content

Commit 910978b

Browse files
authored
chore: bump FabricExample & lib to [email protected] (#3456)
## Description Bumps `FabricExample` & library to `[email protected]`. Open questions: - [ ] Planning both RN upgrade and 4.19.0 release, should we drop support for RN 0.79? Fixes software-mansion/react-native-screens-labs#701 ## Changes - apply changes from [Upgrade Helper](https://react-native-community.github.io/upgrade-helper/?from=0.82.1&to=0.83.0-rc.4) - upgrade reanimated according to the [Compatibility table](https://docs.swmansion.com/react-native-reanimated/docs/guides/compatibility/) - bump lock files ## Test code and steps to reproduce Run example apps. ## Checklist - [x] Included code example that can be used to test this change - [x] Ensured that CI passes
1 parent 9b0be6b commit 910978b

File tree

8 files changed

+1317
-964
lines changed

8 files changed

+1317
-964
lines changed

FabricExample/ios/FabricExample.xcodeproj/project.pbxproj

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@
189189
);
190190
runOnlyForDeploymentPostprocessing = 0;
191191
shellPath = /bin/sh;
192-
shellScript = "set -e\n\nWITH_ENVIRONMENT=\"$REACT_NATIVE_PATH/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"$REACT_NATIVE_PATH/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n";
192+
shellScript = "set -e\n\nWITH_ENVIRONMENT=\"$REACT_NATIVE_PATH/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"$REACT_NATIVE_PATH/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"\\\"$WITH_ENVIRONMENT\\\" \\\"$REACT_NATIVE_XCODE\\\"\"\n";
193193
};
194194
00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
195195
isa = PBXShellScriptBuildPhase;
@@ -199,14 +199,10 @@
199199
inputFileListPaths = (
200200
"${PODS_ROOT}/Target Support Files/Pods-FabricExample/Pods-FabricExample-frameworks-${CONFIGURATION}-input-files.xcfilelist",
201201
);
202-
inputPaths = (
203-
);
204202
name = "[CP] Embed Pods Frameworks";
205203
outputFileListPaths = (
206204
"${PODS_ROOT}/Target Support Files/Pods-FabricExample/Pods-FabricExample-frameworks-${CONFIGURATION}-output-files.xcfilelist",
207205
);
208-
outputPaths = (
209-
);
210206
runOnlyForDeploymentPostprocessing = 0;
211207
shellPath = /bin/sh;
212208
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-FabricExample/Pods-FabricExample-frameworks.sh\"\n";
@@ -242,14 +238,10 @@
242238
inputFileListPaths = (
243239
"${PODS_ROOT}/Target Support Files/Pods-FabricExample/Pods-FabricExample-resources-${CONFIGURATION}-input-files.xcfilelist",
244240
);
245-
inputPaths = (
246-
);
247241
name = "[CP] Copy Pods Resources";
248242
outputFileListPaths = (
249243
"${PODS_ROOT}/Target Support Files/Pods-FabricExample/Pods-FabricExample-resources-${CONFIGURATION}-output-files.xcfilelist",
250244
);
251-
outputPaths = (
252-
);
253245
runOnlyForDeploymentPostprocessing = 0;
254246
shellPath = /bin/sh;
255247
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-FabricExample/Pods-FabricExample-resources.sh\"\n";
@@ -409,6 +401,7 @@
409401
);
410402
MTL_ENABLE_DEBUG_INFO = YES;
411403
ONLY_ACTIVE_ARCH = YES;
404+
OTHER_CFLAGS = "$(inherited)";
412405
OTHER_CPLUSPLUSFLAGS = (
413406
"$(OTHER_CFLAGS)",
414407
"-DFOLLY_NO_CONFIG",
@@ -417,7 +410,10 @@
417410
"-DFOLLY_CFG_NO_COROUTINES=1",
418411
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
419412
);
420-
OTHER_LDFLAGS = "$(inherited) ";
413+
OTHER_LDFLAGS = (
414+
"$(inherited)",
415+
" ",
416+
);
421417
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
422418
SDKROOT = iphoneos;
423419
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
@@ -493,6 +489,7 @@
493489
"\"$(inherited)\"",
494490
);
495491
MTL_ENABLE_DEBUG_INFO = NO;
492+
OTHER_CFLAGS = "$(inherited)";
496493
OTHER_CPLUSPLUSFLAGS = (
497494
"$(OTHER_CFLAGS)",
498495
"-DFOLLY_NO_CONFIG",
@@ -501,7 +498,10 @@
501498
"-DFOLLY_CFG_NO_COROUTINES=1",
502499
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
503500
);
504-
OTHER_LDFLAGS = "$(inherited) ";
501+
OTHER_LDFLAGS = (
502+
"$(inherited)",
503+
" ",
504+
);
505505
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
506506
SDKROOT = iphoneos;
507507
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "";

0 commit comments

Comments
 (0)