@@ -18,7 +18,7 @@ Here's the recommended procedure:
1818
1919. Install build software:
2020.. a https://adoptium.net/releases.html[Java Development Kit (JDK)],
21- version 8 or higher, and
21+ version 17 or higher, and
2222.. one of the supported C++ compilers:
2323... for Linux: https://gcc.gnu.org/[the GNU Compiler Collection] or https://www.llvm.org[Clang]
2424... for macOS: https://developer.apple.com/xcode[Xcode]
@@ -37,7 +37,7 @@ Here's the recommended procedure:
3737.. using https://git-scm.com[Git]:
3838... `git clone https://github.com/stephengold/Libbulletjme.git`
3939... `cd Libbulletjme`
40- ... `git checkout -b latest 23.0.0 `
40+ ... `git checkout -b latest 23.0.1 `
4141.. using a web browser:
4242... browse to https://github.com/stephengold/Libbulletjme/releases/latest
4343... follow the "Source code (zip)" link
@@ -51,9 +51,12 @@ Here's the recommended procedure:
5151. To build Android artifacts, you'll need to
5252 install https://developer.android.com/studio[Android Studio]
5353 and point the `ANDROID_HOME` environment variable to that installation.
54+ . Install the Android build script:
55+ .. using Bash or Fish or PowerShell or Zsh: `cp android.gradle build.gradle`
56+ .. using Windows Command Prompt: `copy android.gradle build.gradle`
5457. Run the Gradle wrapper on the Android build script:
55- .. using Bash or Fish or PowerShell or Zsh: `./gradlew -b android.gradle build`
56- .. using Windows Command Prompt: `.\gradlew -b android.gradle build`
58+ .. using Bash or Fish or PowerShell or Zsh: `./gradlew build`
59+ .. using Windows Command Prompt: `.\gradlew build`
5760
5861After a successful build,
5962artifacts will be found in "build/libs" (desktop) and "build/outputs/aar" (Android).
@@ -87,13 +90,3 @@ You can install them to your local Maven repository.
8790
8891After a successful build,
8992your local copy of the site will be found in "docs/build/site".
90-
91-
92- == Cleanup
93-
94- At any time, you can restore the project to a pristine state:
95-
96- * using Bash or Fish or PowerShell or Zsh: `./gradlew clean;./gradlew -b android.gradle clean`
97- * using Windows Command Prompt:
98- ** `.\gradlew clean`
99- ** `.\gradlew -b android.gradle clean`
0 commit comments