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",
|
"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",
|
||||||
|
|||||||
Reference in New Issue
Block a user