bump revsion

This commit is contained in:
adelphes
2017-01-22 17:15:22 +00:00
parent 568d8f429f
commit 294fc5ed6f

View File

@@ -2,7 +2,7 @@
"name": "android-dev-ext",
"displayName": "Android",
"description": "Android debugging support for VS Code",
"version": "0.1.0",
"version": "0.1.1",
"publisher": "adelphes",
"preview": true,
"license": "MIT",
@@ -17,30 +17,32 @@
"color": "#5c2d91",
"theme": "dark"
},
"activationEvents": [
],
"activationEvents": [],
"repository": {
"type": "git",
"url": "https://github.com/adelphes/android-dev-ext"
},
"main": "./extension",
"contributes": {
"commands": [
],
"commands": [],
"breakpoints": [
{
"language": "java"
}
],
"debuggers": [{
"debuggers": [
{
"type": "android",
"label": "Android Debug",
"program": "./src/debugMain.js",
"runtime": "node",
"configurationAttributes": {
"launch": {
"required": ["appSrcRoot","apkFile","adbPort"],
"required": [
"appSrcRoot",
"apkFile",
"adbPort"
],
"properties": {
"appSrcRoot": {
"type": "string",
@@ -70,7 +72,6 @@
}
}
},
"initialConfigurations": [
{
"type": "android",
@@ -81,7 +82,6 @@
"adbPort": 5037
}
],
"configurationSnippets": [
{
"label": "Android: Launch Configuration",
@@ -96,10 +96,9 @@
}
}
],
"variables": {
"variables": {}
}
}]
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",