mirror of
https://github.com/adelphes/android-dev-ext.git
synced 2025-12-22 17:39:19 +00:00
version 0.2
This commit is contained in:
@@ -1,5 +1,12 @@
|
||||
# Change Log
|
||||
|
||||
## version 0.2.0
|
||||
* Support for Logcat viewing [ Command Palette -> Android: View Logcat ]
|
||||
* Support for modifying local variables, object fields and array elements (literal values only)
|
||||
* Break on exceptions
|
||||
* Support for stepping through Android sources (using ANDROID_HOME location)
|
||||
* Bug fixes
|
||||
|
||||
## version 0.1.0
|
||||
Initial release
|
||||
* Support for deploying, launching and debugging Apps via ADB
|
||||
|
||||
10
README.md
10
README.md
@@ -2,6 +2,14 @@
|
||||
|
||||
This is a preview version of the Android for VS Code Extension. The extension allows developers to install, launch and debug Android Apps from within the VS Code environment.
|
||||
|
||||
## Features
|
||||
* Line by line code stepping
|
||||
* Breakpoints
|
||||
* Variable inspection and modification
|
||||
* Logcat viewing [ Command Palette -> Android: View Logcat ]
|
||||
* Break on exceptions
|
||||
* Step through Android sources
|
||||
|
||||
## Requirements
|
||||
|
||||
You must have [Android SDK Tools](https://developer.android.com/studio/releases/sdk-tools.html) installed. This extension communicates with your device via the ADB (Android Debug Bridge) interface.
|
||||
@@ -13,7 +21,7 @@ You must have [Android SDK Tools](https://developer.android.com/studio/releases/
|
||||
* This extension **will not build your app**.
|
||||
If you use gradle (or Android Studio), you can build your app from the command-line using `./gradlew assembleDebug`.
|
||||
> You must use gradle or some other build procedure to create your APK. Once built, the extension can deploy and launch your app, allowing you to debug it in the normal way.
|
||||
* Some debugger options are yet to be implemented. You cannot modify local variable values or set conditional breakpoints and watch expressions must be simple variables.
|
||||
* Some debugger options are yet to be implemented. You cannot set conditional breakpoints and watch expressions must be simple variables.
|
||||
* If you require a must-have feature that isn't there yet, let us know on [GitHub](https://github.com/adelphes/android-dev-ext/issues).
|
||||
* This extension does not provide any additional code completion or other editing enhancements.
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"name": "android-dev-ext",
|
||||
"displayName": "Android",
|
||||
"description": "Android debugging support for VS Code",
|
||||
"version": "0.1.3",
|
||||
"version": "0.2.0",
|
||||
"publisher": "adelphes",
|
||||
"preview": true,
|
||||
"license": "MIT",
|
||||
|
||||
Reference in New Issue
Block a user