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
Add XCUserData support for per-user Xcode data (#47)
Adds high-level API for accessing and manipulating user data directories
(xcuserdata/{user}.xcuserdatad/) which contain per-user schemes, breakpoints,
and scheme management.
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: README.md
+73-1Lines changed: 73 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -458,6 +458,78 @@ list.breakpoints?.push({
458
458
const outputXml =breakpoints.build(list);
459
459
```
460
460
461
+
## XCUserData Support
462
+
463
+
Access and manipulate user data directories (`xcuserdata`) which contain per-user schemes, breakpoints, and scheme management. Unlike shared data, user data is per-developer and typically not checked into version control.
0 commit comments