Skip to content

Commit 4c643b6

Browse files
committed
0.0.9
1 parent 5debecc commit 4c643b6

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to the "android-debug" extension will be documented in this file.
44

5+
## v0.0.9
6+
- Breaking: `mode` now defaults to `java` instead of `native` if not specified.
7+
- Add option to install apk while by specifying `apkPath` option for `launch` requests.
8+
- Ignore SIGSEGV in native debugging to be compatible with Android Studio.
9+
- Fix lldb-server path in NDK 26.
10+
511
## v0.0.8
612
- Fix start lldb server phase, which was failing due to an incorrect path
713

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"publisher": "nisargjhaveri",
44
"displayName": "Android Debug",
55
"description": "Debug Android Apps in VS Code",
6-
"version": "0.0.8",
6+
"version": "0.0.9",
77
"repository": "https://github.com/nisargjhaveri/vscode-android-debug",
88
"engines": {
99
"vscode": "^1.56.0"
@@ -336,10 +336,14 @@
336336
],
337337
"oneOf": [
338338
{
339-
"required": ["packageName"]
339+
"required": [
340+
"packageName"
341+
]
340342
},
341343
{
342-
"required": ["apkPath"]
344+
"required": [
345+
"apkPath"
346+
]
343347
}
344348
],
345349
"properties": {

0 commit comments

Comments
 (0)