-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflutter.json
More file actions
58 lines (58 loc) · 1.5 KB
/
Copy pathflutter.json
File metadata and controls
58 lines (58 loc) · 1.5 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
{
"tool": "flutter",
"displayName": "Flutter",
"detection": {
"commands": ["flutter", "dart", "pub"],
"paths": ["/opt/homebrew/bin/flutter", "~/development/flutter/bin/flutter"]
},
"caches": [
{
"id": "dart-pub-cache",
"path": "~/.pub-cache",
"type": "packages",
"description": "Dart/Flutter package cache",
"safeToDelete": true,
"requiresConfirmation": false,
"toolCommand": {
"executable": "dart",
"args": ["pub", "cache", "clean"]
}
},
{
"id": "flutter-bin-cache",
"path": "~/development/flutter/bin/cache",
"type": "packages",
"description": "Flutter SDK artifacts cache",
"safeToDelete": true,
"requiresConfirmation": false,
"toolCommand": {
"executable": "flutter",
"args": ["clean"]
}
},
{
"id": "flutter-logs",
"path": "~/Library/Logs/flutter",
"type": "logs",
"description": "Flutter framework logs",
"safeToDelete": true,
"requiresConfirmation": false
},
{
"id": "android-gradle-cache",
"path": "~/.gradle/caches",
"type": "buildArtifacts",
"description": "Android Gradle build cache",
"safeToDelete": true,
"requiresConfirmation": false
},
{
"id": "android-build-cache",
"path": "~/.android/build-cache",
"type": "buildArtifacts",
"description": "Android build system cache",
"safeToDelete": true,
"requiresConfirmation": false
}
]
}