Added an installation problem solution on Ubuntu (#2798)
This commit is contained in:
parent
4bcae5f664
commit
2c9cf077c5
1 changed files with 12 additions and 2 deletions
10
README.md
10
README.md
|
@ -93,6 +93,16 @@ Building: `./gradlew desktop:dist`
|
|||
|
||||
If the terminal returns `Permission denied` or `Command not found` on Mac/Linux, run `chmod +x ./gradlew` first. *This is a one-time procedure.*
|
||||
|
||||
If you get an error that Android SDK folder wasn't found, firstly install it by doing in terminal:
|
||||
|
||||
`sudo apt update && sudo apt install android-sdk` (Debian, Ubuntu, Mint etc.)
|
||||
|
||||
After that you should put its folder to the file `local.properties` by adding this line:
|
||||
|
||||
`sdk.dir = /path/to/android/sdk` which can be `/usr/lib/android-sdk` or something other.
|
||||
|
||||
If during the first launch it throws an error that the JDK version is wrong try [this JDK installation](https://www.azul.com/downloads/zulu-community/?package=jdk).
|
||||
|
||||
Gradle may take up to several minutes to download files. Be patient.
|
||||
After building, the output .JAR file should be in /desktop/build/libs/Unciv.jar
|
||||
|
||||
|
|
Loading…
Reference in a new issue