mirror of
https://github.com/adelphes/android-dev-ext.git
synced 2025-12-22 17:39:19 +00:00
bump revsion
This commit is contained in:
25
package.json
25
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",
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user