-
Notifications
You must be signed in to change notification settings - Fork 1
/
android-dev.code-workspace
95 lines (94 loc) · 1.73 KB
/
android-dev.code-workspace
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
95
{
"folders": [
{
"name": "device_alioth",
"path": "/android/aicp/device/xiaomi/alioth"
},
{
"name": "device_sm8250-common",
"path": "/android/aicp/device/xiaomi/sm8250-common"
},
{
"name": "vendor_alioth",
"path": "/android/aicp/vendor/xiaomi/alioth"
},
{
"name": "vendor_sm8250-common",
"path": "/android/aicp/vendor/xiaomi/sm8250-common"
},
{
"name": "kernel_alioth",
"path": "/android/aicp/kernel/xiaomi/alioth"
},
{
"name": "logs",
"path": "/android/logs"
},
{
"name": "local_manifests",
"path": "/android/aicp/.repo/local_manifests"
}
],
"settings": {
"terminal.integrated.cwd": "/android/aicp",
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"**/*.log":true
},
"files.associations": {
"tombstone_*": "log"
}
},
"tasks": {
"version": "2.0.0",
"tasks": [
/*{
"label": "repo sync",
"type": "shell",
"command": "repo sync",
"options": {
"cwd": "/android/aicp"
}
},
{
"label": "repo sync --force-sync",
"type": "shell",
"command": "repo sync --force-sync",
"options": {
"cwd": "/android/aicp"
}
},*/
{
"label": "build and log",
"type": "shell",
"command": "bash /android/logs/havoc.sh"
}
]
},
"launch": {
"configurations": [
/*{
"name": "repo sync",
"type": "node",
"request": "attach",
"preLaunchTask": "repo sync"
},
{
"name": "repo sync --force-sync",
"type": "node",
"request": "attach",
"preLaunchTask": "repo sync --force-sync"
},*/
{
"name": "build",
"type": "node",
"request": "attach",
"preLaunchTask": "build and log"
},
],
"compounds": [
]
}
}