You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-3Lines changed: 2 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ Features
25
25
26
26
* Supports code from Java 1.5 to Java 18
27
27
* Maven pom.xml project support
28
-
*Basic Gradle Java project support (Android not supported)
28
+
* Gradle project support (with experimental Android project import support)
29
29
* Standalone Java files support
30
30
* As-you-type reporting of parsing and compilation errors
31
31
* Code completion
@@ -48,8 +48,6 @@ Features
48
48
* Call Hierarchy
49
49
* Type Hierarchy
50
50
51
-
Please note that [Gradle-based Android projects are not supported](https://github.com/redhat-developer/vscode-java/issues/10#issuecomment-268834749).
52
-
53
51
To launch and debug your Java programs, it's recommended you install *[Java Debug Extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-java-debug)*.
54
52
55
53
See the [changelog](CHANGELOG.md) for the latest release. You might also find useful information in the project [Wiki](https://github.com/redhat-developer/vscode-java/wiki).
@@ -210,6 +208,7 @@ New in 1.10.0
210
208
*`java.import.maven.offline.enabled`: Enable/disable the Maven offline mode. Defaults to `false`.
211
209
*`java.codeAction.sortMembers.avoidVolatileChanges`: Reordering of fields, enum constants, and initializers can result in semantic and runtime changes due to different initialization and persistence order. This setting prevents this from occurring. Defaults to `true`.
212
210
*`java.jdt.ls.protobufSupport.enabled`: Specify whether to automatically add Protobuf output source directories to the classpath. **Note:** Only works for Gradle `com.google.protobuf` plugin `0.8.4` or higher. Defaults to `true`.
211
+
*`java.jdt.ls.androidSupport.enabled`: [Experimental] Specify whether to enable Android project importing. When set to `auto`, the Android support will be enabled in Visual Studio Code - Insiders. **Note:** Only works for Android Gradle Plugin `3.2.0` or higher. Defaults to `auto`.
Copy file name to clipboardExpand all lines: package.json
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -941,6 +941,17 @@
941
941
"markdownDescription": "Specify whether to automatically add Protobuf output source directories to the classpath.\n\n**Note:** Only works for Gradle `com.google.protobuf` plugin `0.8.4` or higher.",
942
942
"scope": "window"
943
943
},
944
+
"java.jdt.ls.androidSupport.enabled": {
945
+
"type": "string",
946
+
"enum": [
947
+
"auto",
948
+
"on",
949
+
"off"
950
+
],
951
+
"default": "auto",
952
+
"markdownDescription": "[Experimental] Specify whether to enable Android project importing. When set to `auto`, the Android support will be enabled in Visual Studio Code - Insiders.\n\n**Note:** Only works for Android Gradle Plugin `3.2.0` or higher.",
0 commit comments