From 8bc975aff874e5e208cffca832296be6e7876a06 Mon Sep 17 00:00:00 2001 From: Matan Lurey Date: Thu, 11 Jul 2024 16:06:59 -0700 Subject: [PATCH] Update Setting-up-the-Engine-development-environment.md (#53828) Part of https://github.com/flutter/flutter/issues/150869. --- .../Setting-up-the-Engine-development-environment.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/contributing/Setting-up-the-Engine-development-environment.md b/docs/contributing/Setting-up-the-Engine-development-environment.md index 6bf60feeb019c..23a06c4985686 100644 --- a/docs/contributing/Setting-up-the-Engine-development-environment.md +++ b/docs/contributing/Setting-up-the-Engine-development-environment.md @@ -169,8 +169,14 @@ To set up: 1. If you previously had a `shell/platform/android/.classpath`, delete it. +### Using Android Studio as an IDE for the Android Embedding [Java] + +Alternatively, Android Studio can be used as an IDE for the Android Embedding Java code. See docs +at https://github.com/flutter/engine/blob/main/shell/platform/android/README.md#editing-java-code for +instructions. + ## VSCode Additional Useful Configuration 1. Create [snippets](https://code.visualstudio.com/docs/editor/userdefinedsnippets) for header files with [this configuration](https://github.com/chromium/chromium/blob/master/tools/vscode/settings.json5). This will let you use `hdr` keyboard macro to create the boiler plate header code. Also consider some of [these settings](https://github.com/chromium/chromium/blob/master/tools/vscode/settings.json5) and [more tips](https://chromium.googlesource.com/chromium/src/+show/lkgr/docs/vscode.md). -2. To format GN files on save, [consider using this extension](https://marketplace.visualstudio.com/items?itemName=persidskiy.vscode-gnformat). \ No newline at end of file +2. To format GN files on save, [consider using this extension](https://marketplace.visualstudio.com/items?itemName=persidskiy.vscode-gnformat).