You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/platforms/apple/common/install/cocoapods.mdx
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,3 +15,5 @@ end
15
15
```
16
16
17
17
Afterwards run `pod install`.
18
+
19
+
If you're using Xcode 14 or later, your project might fail to build due to `error: Sandbox: rsync.samba(42924)`. To resolve this you have to disable the "Enable User Script Sandbox" option in the target settings by setting it to `NO`. See <PlatformLinkto="/troubleshooting#sandbox-error-using-cocoapods">Troubleshooting</PlatformLink> for more information.
@@ -156,3 +157,26 @@ say it is due to a bug in Xcode 15.4. They recommend sticking to Xcode 15.3 unti
156
157
If the release health page shows fewer events in the unhandled tab, your events miss the unhandled property or mach info; please update the Cocoa SDK to version 8.33.0 or above or stay on version 8.30.0.
157
158
158
159
We introduced a bug with a refactoring [#4101](https://github.com/getsentry/sentry-cocoa/pull/4101) released in 8.30.1, that caused unhandled/crash events to have the unhandled property and mach info missing, which is required for release health to show events in the unhandled tab. It's essential to mention that this bug doesn't impact release health statistics, such as crash-free session or user rates.
160
+
161
+
## Sandbox Error Using Cocoapods
162
+
163
+
After setting up Cocoapods using a `Podfile` and running `pod install` to set up the project, you might see the following error when building the target:
WhileitseemstoberelatedtoSentry,itisactuallycausedbytheuserscriptsandboxfeatureintroducedin[Xcode14](https://developer.apple.com/documentation/xcode-release-notes/xcode-14-release-notes),whichisenabledbydefault.Inordertofixthis,youneedtoheadtothetargetsettingsofyourprojectandsetthe"Enable User Script Sandbox"optionto`NO`.
0 commit comments