Skip to content

Commit dbf4205

Browse files
committed
pod repo-update
1 parent 4dfbe86 commit dbf4205

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

ios/RocketChatRN.xcodeproj/project.pbxproj

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1550,7 +1550,7 @@
15501550
);
15511551
runOnlyForDeploymentPostprocessing = 0;
15521552
shellPath = /bin/sh;
1553-
shellScript = "export EXTRA_PACKAGER_ARGS=\"--sourcemap-output $TMPDIR/$(md5 -qs \"$CONFIGURATION_BUILD_DIR\")-main.jsbundle.map\"\nexport NODE_BINARY=/Users/diegomello/.nvm/versions/node/v22.14.0/bin/node\n../node_modules/react-native/scripts/react-native-xcode.sh\n";
1553+
shellScript = "export EXTRA_PACKAGER_ARGS=\"--sourcemap-output $TMPDIR/$(md5 -qs \"$CONFIGURATION_BUILD_DIR\")-main.jsbundle.map\"\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n";
15541554
};
15551555
1E1EA8082326CCE300E22452 /* ShellScript */ = {
15561556
isa = PBXShellScriptBuildPhase;
@@ -1824,7 +1824,7 @@
18241824
inputFileListPaths = (
18251825
);
18261826
inputPaths = (
1827-
$TARGET_BUILD_DIR/$INFOPLIST_PATH,
1827+
"$TARGET_BUILD_DIR/$INFOPLIST_PATH",
18281828
);
18291829
name = "Upload source maps to Bugsnag";
18301830
outputFileListPaths = (
@@ -1833,7 +1833,7 @@
18331833
);
18341834
runOnlyForDeploymentPostprocessing = 0;
18351835
shellPath = /bin/sh;
1836-
shellScript = "#SOURCE_MAP=\"$TMPDIR/$(md5 -qs \"$CONFIGURATION_BUILD_DIR\")-main.jsbundle.map\" ../node_modules/@bugsnag/react-native/bugsnag-react-native-xcode.sh\n";
1836+
shellScript = "SOURCE_MAP=\"$TMPDIR/$(md5 -qs \"$CONFIGURATION_BUILD_DIR\")-main.jsbundle.map\" ../node_modules/@bugsnag/react-native/bugsnag-react-native-xcode.sh\n";
18371837
showEnvVarsInLog = 0;
18381838
};
18391839
84028E94C77DEBDD5200728D /* [Expo] Configure project */ = {
@@ -2574,7 +2574,7 @@
25742574
"$(inherited)",
25752575
"$(SRCROOT)/../node_modules/rn-extensions-share/ios/**",
25762576
"$(SRCROOT)/../node_modules/react-native-firebase/ios/RNFirebase/**",
2577-
$PODS_CONFIGURATION_BUILD_DIR/Firebase,
2577+
"$PODS_CONFIGURATION_BUILD_DIR/Firebase",
25782578
);
25792579
INFOPLIST_FILE = ShareRocketChatRN/Info.plist;
25802580
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
@@ -2650,7 +2650,7 @@
26502650
"$(inherited)",
26512651
"$(SRCROOT)/../node_modules/rn-extensions-share/ios/**",
26522652
"$(SRCROOT)/../node_modules/react-native-firebase/ios/RNFirebase/**",
2653-
$PODS_CONFIGURATION_BUILD_DIR/Firebase,
2653+
"$PODS_CONFIGURATION_BUILD_DIR/Firebase",
26542654
);
26552655
INFOPLIST_FILE = ShareRocketChatRN/Info.plist;
26562656
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
@@ -3175,7 +3175,10 @@
31753175
ONLY_ACTIVE_ARCH = YES;
31763176
OTHER_CFLAGS = "$(inherited)";
31773177
OTHER_CPLUSPLUSFLAGS = "$(inherited)";
3178-
OTHER_LDFLAGS = "$(inherited) ";
3178+
OTHER_LDFLAGS = (
3179+
"$(inherited)",
3180+
" ",
3181+
);
31793182
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
31803183
SDKROOT = iphoneos;
31813184
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
@@ -3239,7 +3242,10 @@
32393242
MTL_ENABLE_DEBUG_INFO = NO;
32403243
OTHER_CFLAGS = "$(inherited)";
32413244
OTHER_CPLUSPLUSFLAGS = "$(inherited)";
3242-
OTHER_LDFLAGS = "$(inherited) ";
3245+
OTHER_LDFLAGS = (
3246+
"$(inherited)",
3247+
" ",
3248+
);
32433249
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
32443250
SDKROOT = iphoneos;
32453251
SWIFT_COMPILATION_MODE = wholemodule;

0 commit comments

Comments
 (0)