Skip to content

Commit a01d3b5

Browse files
committed
Update install directions to use Temurin JDK, and be less platform specific.
1 parent 7b14eaa commit a01d3b5

File tree

1 file changed

+22
-4
lines changed

1 file changed

+22
-4
lines changed

BUILD.md

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,33 @@ If your main concern is with the `Core` you don't need to build and start the wh
6262

6363
## Other editors
6464

65-
### No editor, Ubuntu 24.04
65+
### No editor, Linux or macOS
66+
67+
The first step is to install Temurin JDB 17 - LTS.
68+
For Linux on x86, download:
69+
https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.15%2B6/OpenJDK17U-jdk_x64_linux_hotspot_17.0.15_6.tar.gz
70+
71+
For macOS users on Apple Silicon, download:
72+
https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.15%2B6/OpenJDK17U-jdk_aarch64_mac_hotspot_17.0.15_6.pkg
73+
74+
For everyone else, visit:
75+
https://adoptium.net/temurin/releases/?package=jdk&version=17&os=any&arch=any
76+
6677

6778
```
68-
sudo apt install openjdk-17-jdk openjdk-17-source
69-
export JAVA_HOME=/usr/lib/jvm/java-17-openjdk-amd64/
79+
export JAVA_HOME=/path/to/temurin/jdk-17.0.15+6/
7080
./gradlew build
71-
./gradlew tets
81+
./gradlew test
82+
```
83+
84+
Then either:
85+
```
7286
./gradlew package
7387
```
88+
which will result in the package being placed in `app/build/compose/binaries`, or
89+
```
90+
./gradlew run
91+
```
7492

7593
## Troubleshooting and Setup Tips (IntelliJ IDEA)
7694

0 commit comments

Comments
 (0)