Index: docs/android_studio.md |
diff --git a/docs/android_studio.md b/docs/android_studio.md |
index 511d5e4ea82293646a0039a61c3a7246bb5a1b6b..2815238f69169f34364c32c8e5beb315b782f555 100644 |
--- a/docs/android_studio.md |
+++ b/docs/android_studio.md |
@@ -21,7 +21,7 @@ |
to generate projects for: |
```shell |
-build/android/gradle/generate_gradle.py --target //chrome/android:chrome_public_apk --target //android_webview/test:android_webview_apk |
+build/android/gradle/generate_gradle.py --target //some:target_apk --target //some/other:target_apk |
``` |
For first-time Android Studio users: |
@@ -34,15 +34,14 @@ |
To import the project: |
* Use "Import Project", and select the directory containing the generated |
- project, by default `out/Debug/gradle`. |
+ project, by default `out-gn/Debug/gradle`. |
You need to re-run `generate_gradle.py` whenever `BUILD.gn` files change. |
* After regenerating, Android Studio should prompt you to "Sync". If it |
doesn't, use: |
- * Button with two arrows on the right side of the top strip. |
* Help -> Find Action -> "Sync Project with Gradle Files" |
- * After `gn clean` you may need to restart Android Studio. |
+ |
## How it Works |
@@ -116,7 +115,7 @@ |
* Add the line `org.gradle.daemon=true` to `~/.gradle/gradle.properties`, |
creating it if necessary. |
-## Status (as of Feb 7th, 2017) |
+## Status (as of Jan 19, 2017) |
### What works |
@@ -124,12 +123,10 @@ |
* Java editing and gradle compile works. |
* Instrumentation tests included as androidTest. |
* Symlinks to existing .so files in jniLibs (doesn't generate them). |
-* Editing resource xml files. |
### What doesn't work (yet) ([crbug](https://bugs.chromium.org/p/chromium/issues/detail?id=620034)) |
-* Make gradle aware of assets |
-* Layout editor |
+* Make gradle aware of resources and assets |
* Add a mode in which gradle is responsible for generating `R.java` |
* Add support for native code editing |
* Make the "Make Project" button work correctly |