From 00484f242905324de5cfc9eb8f85d55481aa1fec Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Tue, 16 Nov 2021 13:58:47 -0500 Subject: [PATCH] add section on updating Gradle and Gradle wrapper --- static/build.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/static/build.html b/static/build.html index 6ab8a80a..8f07033f 100644 --- a/static/build.html +++ b/static/build.html @@ -101,6 +101,7 @@
  • Stable release manifest
  • Standalone SDK
  • Android Studio
  • +
  • Updating Gradle and Gradle wrapper for standalone apps
  • Obtaining upstream manifests
  • Testing @@ -979,6 +980,18 @@ mv android-studio studio

    You can start it with studio.sh.

    +
    +

    Updating Gradle and Gradle wrapper for standalone apps

    + +

    Obtain the latest Gradle version and binary-only zip checksum from + the Gradle releases page.

    + +

    Use the gradle wrapper script to update Gradle to the latest version. You should run this twice rather than only once to upgrade the Gradle wrapper with the new Gradle version. For example, with Gradle 7.3:

    + +
    ./gradlew wrapper --gradle-version=7.3 --gradle-distribution-sha256-sum=de8f52ad49bdc759164f72439a3bf56ddb1589c4cde802d3cec7d6ad0e0ee410
    +./gradlew wrapper --gradle-version=7.3 --gradle-distribution-sha256-sum=de8f52ad49bdc759164f72439a3bf56ddb1589c4cde802d3cec7d6ad0e0ee410
    +
    +