Extract manifest directly from APK (#74)

* initial support for decoding manifest from the APK

* add support for overriding AndroidManifest.xml file location in launch config

* correct property name in comment
This commit is contained in:
Dave Holoway
2019-08-25 19:37:21 +01:00
committed by GitHub
parent 8f2f7d2fd4
commit 989de8254a
5 changed files with 444 additions and 35 deletions

View File

@@ -84,6 +84,11 @@
"description": "Port number to use for the internal logcat websocket link. Changes to this value only apply when the extension is restarted. Default: 7038",
"default": 7038
},
"manifestFile": {
"type": "string",
"description": "Overrides the default location of AndroidManifest.xml",
"default": "${workspaceRoot}/app/src/main/AndroidManifest.xml"
},
"staleBuild": {
"type": "string",
"description": "Launch behaviour if source files have been saved after the APK was built. One of: [\"ignore\" \"warn\" \"stop\"]. Default: \"warn\"",
@@ -136,6 +141,7 @@
},
"dependencies": {
"long": "^4.0.0",
"unzipper": "^0.10.4",
"uuid": "^3.3.2",
"vscode-debugadapter": "^1.32.0",
"vscode-debugprotocol": "^1.32.0",