-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmanifest.json
More file actions
60 lines (60 loc) · 2.38 KB
/
Copy pathmanifest.json
File metadata and controls
60 lines (60 loc) · 2.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
54
55
56
57
58
59
60
{
"dxt_version": "0.1",
"name": "AdbFriend",
"version": "{{VERSION}}",
"description": "ADB Friend is a tiny cli tool, which helps you to manage your Android device via ADB.",
"long_description": "ADB Friend is a tiny cli tool, which helps you to manage your Android device via ADB.\nIts features were mostly designed for developers, but it can be useful for everyone.\n\n## Features\n\n- Sync files from your computer to your phone\n - Designed for test data, skipping existing files on device\n- Configure device for tests\n - Disable animations, Enable touches, ...\n- Uninstall apps by pattern\n- Packages command\n - Apply the immersive flag to all packages matching glob, force-stop, clear app data & cache\n- Extra tools\n - adb-speed (Helps to identify sub-par cables)",
"author": {
"name": "Mike Penz",
"email": "opensource@mikepenz.dev",
"url": "https://github.com/mikepenz/"
},
"homepage": "https://github.com/mikepenz/adbfriend/",
"documentation": "https://github.com/mikepenz/adbfriend/",
"server": {
"type": "binary",
"entry_point": "bin/adbfriend",
"mcp_config": {
"command": "${__dirname}/bin/adbfriend",
"args": [ "mcp", "server" ],
"env": {
"adbfriend-allowed-paths": "${user_config.allowed_paths}",
"adbfriend-host-allowed-paths-paths": "${user_config.host_allowed_paths}",
"ANDROID_HOME": "${user_config.android_home}"
}
}
},
"tools_generated": true,
"user_config": {
"allowed_paths": {
"type": "string",
"title": "Allowed Paths (on the phone)",
"description": "List of allowed paths for file system operations on the Android device",
"multiple": true,
"required": true,
"sensitive": false,
"default": ["/sdcard/Download/"]
},
"host_allowed_paths": {
"type": "directory",
"title": "Host Allowed Paths",
"description": "List of allowed paths for file system operations on the host system",
"multiple": true,
"required": true,
"sensitive": false,
"default": ["${HOME}/adbfriend"]
},
"android_home": {
"type": "directory",
"title": "Android Home",
"description": "Home directory for the Android SDK",
"required": true,
"sensitive": false
}
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/mikepenz/adbfriend/"
}
}