summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2020-06-12 07:55:39 +0800
committerꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2020-06-12 07:55:39 +0800
commit0311e81357bf2fac0affff749c90760046039eb3 (patch)
tree07dea65317a050420b998f6238f299f5b02509b4
parent6940a14a5b19d85844e075934103d6f839c67eb4 (diff)
Add APK bundling step on FreeBSD
-rw-r--r--README.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/README.md b/README.md
index f4241ce..0589dc7 100644
--- a/README.md
+++ b/README.md
@@ -29,7 +29,20 @@ or so on.
```sh
$ make # -jN (with N an integer number of parallel tasks you allow your computer to run for compiling this)
+```
+
+and if for Android:
+
+```sh
$ make install INSTALL_ROOT=android-build
$ export ANDROID_SDK_ROOT=/opt/android-sdk-update-manager
$ /opt/Qt5.14.2/5.14.2/android/bin/androiddeployqt --input android-kelakon-deployment-settings.json --output android-build --android-platform android-24
```
+
+and if on FreeBSD:
+
+```sh
+$ cd android-build
+$ echo "android.aapt2FromMavenOverride = $ANDROID_SDK_ROOT/build-tools/28.0.3/aapt2" >> gradle.properties
+./gradlew assembleDebug
+```