-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxcode.json
More file actions
94 lines (94 loc) · 2.78 KB
/
Copy pathxcode.json
File metadata and controls
94 lines (94 loc) · 2.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"tool": "xcode",
"displayName": "Xcode",
"detection": {
"commands": ["xcodebuild", "swift", "swiftc"],
"paths": ["/Applications/Xcode.app", "/Applications/Xcode-beta.app"]
},
"caches": [
{
"id": "derived-data",
"path": "~/Library/Developer/Xcode/DerivedData",
"type": "buildArtifacts",
"description": "Build artifacts, indexes, and module cache",
"safeToDelete": true,
"requiresConfirmation": false
},
{
"id": "archives",
"path": "~/Library/Developer/Xcode/Archives",
"type": "buildArtifacts",
"description": "App archives for distribution",
"safeToDelete": false,
"requiresConfirmation": true
},
{
"id": "device-support",
"path": "~/Library/Developer/Xcode/iOS DeviceSupport",
"type": "deviceSupport",
"description": "iOS device debugging symbols",
"safeToDelete": true,
"requiresConfirmation": false
},
{
"id": "watchos-device-support",
"path": "~/Library/Developer/Xcode/watchOS DeviceSupport",
"type": "deviceSupport",
"description": "watchOS device debugging symbols",
"safeToDelete": true,
"requiresConfirmation": false
},
{
"id": "tvos-device-support",
"path": "~/Library/Developer/Xcode/tvOS DeviceSupport",
"type": "deviceSupport",
"description": "tvOS device debugging symbols",
"safeToDelete": true,
"requiresConfirmation": false
},
{
"id": "simulator-data",
"path": "~/Library/Developer/CoreSimulator/Devices",
"type": "deviceSupport",
"description": "iOS Simulator runtime data",
"safeToDelete": false,
"requiresConfirmation": true,
"toolCommand": {
"executable": "xcrun",
"args": ["simctl", "delete", "unavailable"]
}
},
{
"id": "simulator-caches",
"path": "~/Library/Developer/CoreSimulator/Caches",
"type": "buildArtifacts",
"description": "iOS Simulator cache data",
"safeToDelete": true,
"requiresConfirmation": false
},
{
"id": "swift-pm-cache",
"path": "~/.swiftpm",
"type": "packages",
"description": "Swift Package Manager cache and artifacts",
"safeToDelete": true,
"requiresConfirmation": false
},
{
"id": "sourcekit-logs",
"path": "~/Library/Logs/DiagnosticReports/SourceKitService*",
"type": "logs",
"description": "SourceKit service crash logs",
"safeToDelete": true,
"requiresConfirmation": false
},
{
"id": "xcode-logs",
"path": "~/Library/Developer/Xcode/UserData/IDEEditorInteractivity.logarchive",
"type": "logs",
"description": "Xcode editor interaction logs",
"safeToDelete": true,
"requiresConfirmation": false
}
]
}