version 0.8.0

This commit is contained in:
Dave Holoway
2019-08-26 11:13:36 +01:00
parent 133b7061b2
commit f92f247ef6
3 changed files with 13 additions and 4 deletions

View File

@@ -1,5 +1,12 @@
# Change Log
### version 0.8.0
* Try to extract Android manifest directly from APK
* Added `manifestFile` launch configuration property
* Allow `pm install` arguments to be customised as a launch configuration property
* Document `launchActivity` launch configuration property
* Fix critical security advisory https://www.npmjs.com/advisories/1118
### version 0.7.1
* Added the [Buy Me A Coffee](https://www.buymeacoffee.com/adelphes) link to the README

2
package-lock.json generated
View File

@@ -1,6 +1,6 @@
{
"name": "android-dev-ext",
"version": "0.7.1",
"version": "0.8.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@@ -2,7 +2,7 @@
"name": "android-dev-ext",
"displayName": "Android",
"description": "Android debugging support for VS Code",
"version": "0.7.1",
"version": "0.8.0",
"publisher": "adelphes",
"preview": true,
"license": "MIT",
@@ -96,8 +96,10 @@
},
"pmInstallArgs": {
"type": "array",
"description":"APK install arguments passed to the Android package manager. Run 'adb shell pm' to show valid arguments. Default: [\"-r\"]",
"default": ["-r"]
"description": "APK install arguments passed to the Android package manager. Run 'adb shell pm' to show valid arguments. Default: [\"-r\"]",
"default": [
"-r"
]
},
"staleBuild": {
"type": "string",