Building the ports
doukutsu-rs has three official ports: 1 stable and 2 experimental.
Stable ports:
Android.
Experimental ports:
Nintendo Switch (also reffered as Horizon);
XBox/UWP (Universal Windows Platform).
Stable ports are part of the upstream codebase, they are actively maintained and have official release builds. They can definetly be compiled and the compilation steps are known and most likely documented.
Experimental ports, on the other hand, typically don't have stable release and nightly builds, and their build algorithm may be undocumented or even broken. If you don't see there the build instruction for some port, then it is most likely that the compilation of this port is not possible or the build steps are unknown.
Please note that this guide provides instructions for building ports on PC only. So first install Rust and clone the doukutsu-rs repository, as described in the previous section.
Android
1. Install Java
The Android port is written in Java, and the build tools require the Java Runtime, so you need to install JDK (Java Development Kit) to build this port. The minimum version of Java required to run Android development tools is Java 17 or greater.
Windows
On Windows you can install JDK following the official installation instructions provided by Oracle.
Linux
On Linux, JDK is usually installing from the repositories of the distribution you are using.
Arch-based distributions (Arch Linux, Manjaro, EndeavourOS, etc.):
Debian-based distributions (Debian, Ubuntu, Linux Mint, Pop!_OS, etc.):
2. Install Android Studio
Android Studio is the primary IDE for Android applications development, so in this guide we'll use it.
To install Android Studio, download it from the Android Developers portal. The minimum version required for building doukutsu-rs is Flamingo | 2022.2.1.
Windows
Download the installer and just install Android Studio. Then run it via a shortcut in the Start Menu or Desktop.
Linux
After downloading the archive, extract it to any location you want (in this example we will extract it into ~/.bin
):
Then open a console (if you hasn't open it yet), enter into the extracted folder, and run bin/studio.sh
script (give it execute permission, if it isn't set):
If Android Studio is started without any errors, you can move to the next step.
3. Install Rust targets
The Android builds of doukutsu-rs supports ARMv7, ARMv8, x86 and x86-64 architectures. To build it you need to install the appropriate Rust targets:
4. Install Android development kits
Launch Android Sudio and on the welcome screen, press "More actions"
and select "SDK Manager"
from the dropdown menu. In the window that opens, tick "Show package details"
.
To understand what version of the development kits you need to install, look at the app/app/build.gradle
file from the doukutsu-rs directory. In this build config compileSdkVersion
property stores the API level, that you can use to install the required Platform SDK. buildToolsVersion
and ndkVersion
store the exact version of build tools and NDK, required for build. Also install CMake 3.18+ in the SDK Manager.
Install exactly the development kits version, that are specified in the build config. Otherwise the build can fail.
If you want to build doukutsu-rs for Android 12 or lower, additionaly install the Platform SDK for the version of Android you want to build for. You can find a list of API levels on the Android Developers portal.
5. Configuring the project
When all dependencies are installed, we can finaly open the project in Android Studio and configure it for building.
Open Android Studio, click "Open project"
and select the app
directory from the cloned doukutsu-rs repository.
When you open the project, in the bottom right corner will appear a notification asking you to install Android Gradle Plugin. Install it. If it will suggest to upgrade it, dismiss this notification. Then you can be sure that all installed components are supported by the engine.
After that, open build.gralde
file from the app
module and sync the project.
6. Build
If you lucky enough to not encouter errors or troubles in the previous steps, you can click the hammer on the top panel or press Ctrl+F9
to build the project. The output APK will be in the app/app/build/outputs/apk/debug
folder.
By default the debug builds that support only ARMv8 (arm64
) architecture will be generated. If you want to make a debug build for another architecture, you need to change the targets field in the cargoNdk.buildTypes.debug
section (it is located at the end of build config).
7. (Optional) Signing the build
All builds require signing, unsigned builds cannot be installed (you will get an error, if you try to install an unsigned build). Debug builds are automatically signed by Android Studio's built-in keystore, but release builds requires manual configuration. To generate a signed release build, click "Build" -> "Generate Signed Bundle / APK". Choose "APK" and the keystore for signing, if it exists, or create one if it doesn't.
When you complete, Android Studio will automatically run the build with specified signing keystore. The generated build will be placed in app/app/build/outputs/apk/release
.
Last updated
Was this helpful?