This repository was archived by the owner on Jan 8, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathandroid.code-workspace
More file actions
53 lines (53 loc) · 1.38 KB
/
android.code-workspace
File metadata and controls
53 lines (53 loc) · 1.38 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
{
"folders": [
{
"path": "vl-main",
"name": "vl-main"
},
{
"path": "vl-global",
"name": "vl-global"
},
,
{
"path": "android",
"name": "android"
}
],
"settings": {
"files.exclude": {
"vl-linux-backend": true,
"easy-pw": true,
},
"rust-analyzer.checkOnSave.command": "clippy",
"editor.formatOnSave": true,
"rust-analyzer.cargo.allFeatures": true,
"rust-analyzer.cargo.target": "aarch64-linux-android",
"rust-analyzer.cargo.extraEnv": {
"CXX": "/opt/android-ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android28-clang++",
"CC": "/opt/android-ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android28-clang"
}
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"command": "make",
"type": "shell",
"args": [
"build-android"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
},
"launch": {
"version": "0.2.0",
"configurations": [],
"compounds": []
}
}