Skip to content

Commit fcfdd9b

Browse files
committed
build(ios): fix path to plist in crashlytics script phase
I believe it had an incorrect path segment prepended to it, now the input file matches the app module input file path
1 parent 089d1fa commit fcfdd9b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/crashlytics/react-native.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ module.exports = {
2525
execution_position: 'after_compile',
2626
input_files: [
2727
'${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Resources/DWARF/${TARGET_NAME}',
28-
'$(SRCROOT)/$(BUILT_PRODUCTS_DIR)/$(INFOPLIST_PATH)',
28+
'$(BUILT_PRODUCTS_DIR)/$(INFOPLIST_PATH)',
2929
],
3030
always_out_of_date: '1',
3131
},

tests/ios/testing.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@
337337
);
338338
inputPaths = (
339339
"${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Resources/DWARF/${TARGET_NAME}",
340-
"$(SRCROOT)/$(BUILT_PRODUCTS_DIR)/$(INFOPLIST_PATH)",
340+
"$(BUILT_PRODUCTS_DIR)/$(INFOPLIST_PATH)",
341341
);
342342
name = "[CP-User] [RNFB] Crashlytics Configuration";
343343
runOnlyForDeploymentPostprocessing = 0;

0 commit comments

Comments
 (0)