From 294fc5ed6fed7340503a10ad872aa72a9c24a5d8 Mon Sep 17 00:00:00 2001 From: adelphes Date: Sun, 22 Jan 2017 17:15:22 +0000 Subject: [PATCH] bump revsion --- package.json | 147 +++++++++++++++++++++++++-------------------------- 1 file changed, 73 insertions(+), 74 deletions(-) diff --git a/package.json b/package.json index 4e57184..99fc684 100644 --- a/package.json +++ b/package.json @@ -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", @@ -12,94 +12,93 @@ "categories": [ "Debuggers" ], - "icon": "images/ade.png", - "galleryBanner": { - "color": "#5c2d91", - "theme": "dark" - }, - "activationEvents": [ - ], + "icon": "images/ade.png", + "galleryBanner": { + "color": "#5c2d91", + "theme": "dark" + }, + "activationEvents": [], "repository": { - "type": "git", + "type": "git", "url": "https://github.com/adelphes/android-dev-ext" }, "main": "./extension", "contributes": { - "commands": [ - ], + "commands": [], "breakpoints": [ { "language": "java" } ], - "debuggers": [{ - "type": "android", - "label": "Android Debug", - "program": "./src/debugMain.js", - "runtime": "node", - - "configurationAttributes": { - "launch": { - "required": ["appSrcRoot","apkFile","adbPort"], - "properties": { - "appSrcRoot": { - "type": "string", - "description": "Location of the App source files. This value must point to the root of your App source tree (containing AndroidManifest.xml)", - "default": "${workspaceRoot}/app/src/main" - }, - "apkFile": { - "type": "string", - "description": "Fully qualified path to the built APK (Android Application Package)", - "default": "${workspaceRoot}/app/build/outputs/apk/app-debug.apk" - }, - "adbPort": { - "type": "integer", - "description": "Port number to connect to the local ADB (Android Debug Bridge) instance. Default: 5037", - "default": 5037 - }, - "staleBuild": { - "type": "string", - "description": "Launch behaviour if source files have been saved after the APK was built. One of: [\"ignore\" \"warn\" \"stop\"]. Default: \"warn\"", - "default": "warn" - }, - "targetDevice": { - "type": "string", - "description": "Target Device ID (as indicated by 'adb devices'). Use this to specify which device is used for deployment when multiple devices are connected.", - "default": "" + "debuggers": [ + { + "type": "android", + "label": "Android Debug", + "program": "./src/debugMain.js", + "runtime": "node", + "configurationAttributes": { + "launch": { + "required": [ + "appSrcRoot", + "apkFile", + "adbPort" + ], + "properties": { + "appSrcRoot": { + "type": "string", + "description": "Location of the App source files. This value must point to the root of your App source tree (containing AndroidManifest.xml)", + "default": "${workspaceRoot}/app/src/main" + }, + "apkFile": { + "type": "string", + "description": "Fully qualified path to the built APK (Android Application Package)", + "default": "${workspaceRoot}/app/build/outputs/apk/app-debug.apk" + }, + "adbPort": { + "type": "integer", + "description": "Port number to connect to the local ADB (Android Debug Bridge) instance. Default: 5037", + "default": 5037 + }, + "staleBuild": { + "type": "string", + "description": "Launch behaviour if source files have been saved after the APK was built. One of: [\"ignore\" \"warn\" \"stop\"]. Default: \"warn\"", + "default": "warn" + }, + "targetDevice": { + "type": "string", + "description": "Target Device ID (as indicated by 'adb devices'). Use this to specify which device is used for deployment when multiple devices are connected.", + "default": "" + } } } - } - }, - - "initialConfigurations": [ - { - "type": "android", - "name": "Android Debug", - "request": "launch", - "appSrcRoot": "${workspaceRoot}/app/src/main", - "apkFile": "${workspaceRoot}/app/build/outputs/apk/app-debug.apk", - "adbPort": 5037 - } - ], - - "configurationSnippets": [ - { - "label": "Android: Launch Configuration", - "description": "A new configuration for launching an Android app debugging session", - "body": { + }, + "initialConfigurations": [ + { "type": "android", + "name": "Android Debug", "request": "launch", - "name": "${2:Launch App}", - "appSrcRoot": "^\"\\${workspaceRoot}/app/src/main\"", - "apkFile": "^\"\\${workspaceRoot}/app/build/outputs/apk/app-debug.apk\"", + "appSrcRoot": "${workspaceRoot}/app/src/main", + "apkFile": "${workspaceRoot}/app/build/outputs/apk/app-debug.apk", "adbPort": 5037 } - } - ], - - "variables": { + ], + "configurationSnippets": [ + { + "label": "Android: Launch Configuration", + "description": "A new configuration for launching an Android app debugging session", + "body": { + "type": "android", + "request": "launch", + "name": "${2:Launch App}", + "appSrcRoot": "^\"\\${workspaceRoot}/app/src/main\"", + "apkFile": "^\"\\${workspaceRoot}/app/build/outputs/apk/app-debug.apk\"", + "adbPort": 5037 + } + } + ], + "variables": {} } - }] + ] }, "scripts": { "postinstall": "node ./node_modules/vscode/bin/install", @@ -107,7 +106,7 @@ }, "dependencies": { "vscode-debugprotocol": "^1.15.0", - "vscode-debugadapter": "^1.15.0", + "vscode-debugadapter": "^1.15.0", "xmldom": "^0.1.27", "xpath": "^0.0.23" }, @@ -119,4 +118,4 @@ "@types/node": "^6.0.40", "@types/mocha": "^2.2.32" } -} +} \ No newline at end of file