From 2c4b7527140b8b95e6fb999e5292393614bf808c Mon Sep 17 00:00:00 2001 From: adelphes Date: Thu, 26 Jan 2017 16:53:01 +0000 Subject: [PATCH] version 0.2 --- CHANGELOG.md | 7 +++++++ README.md | 10 +++++++++- package.json | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a01e5a..d0612e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index cfd4d9a..2344d40 100644 --- a/README.md +++ b/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. diff --git a/package.json b/package.json index cb7f540..286911d 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.3", + "version": "0.2.0", "publisher": "adelphes", "preview": true, "license": "MIT",