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