Skip to content

Commit fc00b00

Browse files
yemirhanclaude
andcommitted
feat: Add APK/AAB app installer feature and bump version to 1.3.0
- Add AppInstallerPanel with drag-and-drop file selection - Support APK installation via adb install - Support AAB installation via bundletool with debug keystore signing - Add install options (reinstall, allow downgrade, grant permissions) - Add progress tracking and user-friendly error messages - Update CSP to allow external fonts Co-Authored-By: Claude Opus 4.5 <[email protected]>
1 parent 5048afe commit fc00b00

File tree

11 files changed

+1187
-4
lines changed

11 files changed

+1187
-4
lines changed

apps/desktop/package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@android-debugger/desktop",
3-
"version": "1.2.0",
3+
"version": "1.3.0",
44
"description": "Android Debugger Desktop Application",
55
"author": "Android Debugger Team",
66
"private": true,
@@ -14,7 +14,8 @@
1414
"publish": "electron-builder --publish always",
1515
"publish:signed": "dotenv -e .env -- electron-builder --publish always",
1616
"clean": "rm -rf dist out",
17-
"copy-adb": "mkdir -p resources/platform-tools && cp ~/Library/Android/sdk/platform-tools/adb resources/platform-tools/ && chmod +x resources/platform-tools/adb"
17+
"copy-adb": "mkdir -p resources/platform-tools && cp ~/Library/Android/sdk/platform-tools/adb resources/platform-tools/ && chmod +x resources/platform-tools/adb",
18+
"copy-bundletool": "mkdir -p resources/bundletool && curl -L -o resources/bundletool/bundletool.jar https://github.com/google/bundletool/releases/download/1.17.2/bundletool-all-1.17.2.jar"
1819
},
1920
"dependencies": {
2021
"@android-debugger/shared": "workspace:*",
@@ -37,6 +38,10 @@
3738
{
3839
"from": "resources/platform-tools",
3940
"to": "platform-tools"
41+
},
42+
{
43+
"from": "resources/bundletool",
44+
"to": "bundletool"
4045
}
4146
],
4247
"npmRebuild": false,

0 commit comments

Comments
 (0)