From e25d51170c3bf79d5c8e00db2ecd462013c6ad0b Mon Sep 17 00:00:00 2001 From: "Nat Kershaw (MSFT)" Date: Tue, 7 Jun 2022 10:40:21 -0700 Subject: [PATCH] Add version to gradle install (#11754) --- docs/build/android.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/build/android.md b/docs/build/android.md index d5c725eef6..4d50218a9b 100644 --- a/docs/build/android.md +++ b/docs/build/android.md @@ -116,7 +116,7 @@ To build on Windows with `--build_java` enabled you must also: * set JAVA_HOME to the path to your JDK install * this could be the JDK from Android Studio, or a [standalone JDK install](https://www.oracle.com/java/technologies/javase-downloads.html) * e.g. Powershell: `$env:JAVA_HOME="C:\Program Files\Java\jdk-15"` CMD: `set JAVA_HOME=C:\Program Files\Java\jdk-15` -* install [Gradle](https://gradle.org/install/) and add the directory to the PATH +* install [Gradle version 6.8.3](https://gradle.org/install/) and add the directory to the PATH * e.g. Powershell: `$env:PATH="$env:PATH;C:\Gradle\gradle-6.6.1\bin"` CMD: `set PATH=%PATH%;C:\Gradle\gradle-6.6.1\bin` * run the build from an admin window * the Java build needs permissions to create a symlink, which requires an admin window