diff --git a/docs/html/images/tools/studio-gradle-panel.png b/docs/html/images/tools/studio-gradle-panel.png deleted file mode 100644 index 4a76a8dccd935..0000000000000 Binary files a/docs/html/images/tools/studio-gradle-panel.png and /dev/null differ diff --git a/docs/html/images/tools/studio-gradle-tab.png b/docs/html/images/tools/studio-gradle-tab.png deleted file mode 100644 index b0f302ccd0f40..0000000000000 Binary files a/docs/html/images/tools/studio-gradle-tab.png and /dev/null differ diff --git a/docs/html/tools/building/building-studio.jd b/docs/html/tools/building/building-studio.jd index 68800da307635..4431194120905 100644 --- a/docs/html/tools/building/building-studio.jd +++ b/docs/html/tools/building/building-studio.jd @@ -67,26 +67,13 @@ selected build variant. For more information, see the Build System guide.

To view the list of all available build tasks in Android Studio, click Gradle -on the right side of the IDE window. The Gradle tasks panel appears as shown in -figure 2. Double-click any build task to run it in Android Studio. To hide the Gradle tasks -panel, click Gradle again.

+on the right side of the IDE window. The Gradle tasks panel appears.

- -

Figure 2. The list of build tasks in Android Studio.

Build a release version

-

You can now build the release version of your application for distribution. To build it from Android -Studio:

- -
    -
  1. Click Gradle on the right side of the IDE window.
  2. -
  3. On the All tasks section of the sidebar that appears, expand - BuildSystemExample.
  4. -
  5. Expand :app and double-click assembleRelease.
  6. -
- -

You can use this procedure to invoke any build task from Android Studio.

+

You can now use the Build menu options to build the release version of your +application for distribution.

The build generates an APK for each build variant: the app/build/apk/ directory contains packages named diff --git a/docs/html/tools/building/configuring-gradle.jd b/docs/html/tools/building/configuring-gradle.jd index 83795085572c1..7cca5b4809b9e 100644 --- a/docs/html/tools/building/configuring-gradle.jd +++ b/docs/html/tools/building/configuring-gradle.jd @@ -470,7 +470,11 @@ applied to each build.

  • fullRelease
  • -

    To build this example, invoke the assemble task from Android Studio or from the -command line.

    +

    To build this example, click the Build menu option in Android Studio or invoke +the assemble task from the command line.

    + +

    Note: The Build > Make Project option compiles +all the source files in the entire project that have been modified since the last compilation. The +Build > Rebuild Project option recomplies all the source files in the project.

    Separate output folders are created for each build variant.

    diff --git a/docs/html/tools/building/plugin-for-gradle.jd b/docs/html/tools/building/plugin-for-gradle.jd index 54a03fd1761a1..a497c1bbc1866 100644 --- a/docs/html/tools/building/plugin-for-gradle.jd +++ b/docs/html/tools/building/plugin-for-gradle.jd @@ -15,7 +15,7 @@ page.title=Android Plug-in for Gradle
  • Build System Overview
  • -Buidling and Running
  • +Building and Running
  • Building and Running from Android Studio
  • @@ -273,16 +273,9 @@ tasks are:

    Performs the clean.

    -

    The Android plugin provides additional tasks for connectedCheck and deviceCheck +

    The Android plugin provides the connectedCheck and deviceCheck tasks for checks run on connected, emulated, and remote devices. Gradle tasks can be viewed by clicking -the Gradle tab in the right margin. -

    -

    Figure 1: Gradle tab

    - -

    Running a top-level task, runs all the dependent tasks. For example, the assemble task -has dependent tasks for assembleDebug and assembleRelease to make the debug and -release APKs. The assemble task depends on these tasks so calling it builds both APKs. -These tasks can also be called independently to build the debug or release APK separately.

    +the Gradle tab in the right margin.

    You can view the list of available tasks and invoke any task from Android Studio and from the command line, as described in