Skip to content

Commit 691e7b9

Browse files
update the dsyms input file value
1 parent ba378f7 commit 691e7b9

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

docs/platforms/apple/guides/ios/size-analysis/insights.mdx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,7 @@ echo "Symbol stripping process completed."
118118
Because Xcode generates dSYMs from the unstripped binary, list the dSYM as an Input File so the script runs after Xcode finishes generating it:
119119

120120
```
121-
${DWARF_DSYM_FOLDER_PATH}/${EXECUTABLE_NAME}.app.dSYM/\
122-
Contents/Resources/DWARF/${EXECUTABLE_NAME}
121+
${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Resources/DWARF/${EXECUTABLE_NAME}
123122
```
124123

125124
![Example of Input File =600x](./images/strip-symbols.png)

platform-includes/debug-symbols-apple/_default.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ You can add `--force-foreground` argument to sentry-cli to help you debug any er
165165
[//]: # "removes the leading $."
166166

167167
```text
168-
${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Resources/DWARF/${TARGET_NAME}
168+
${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Resources/DWARF/${EXECUTABLE_NAME}
169169
```
170170

171171
4. Set `ENABLE_USER_SCRIPT_SANDBOXING` in your Xcode project settings to `NO`.

0 commit comments

Comments
 (0)