From d1d3699233bdccd5707f286341a639c0dd4213ab Mon Sep 17 00:00:00 2001 From: Josia Pietsch Date: Tue, 12 Nov 2024 00:02:45 +0100 Subject: [PATCH] add build instructions --- BUILD.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 BUILD.md diff --git a/BUILD.md b/BUILD.md new file mode 100644 index 0000000..5f62a30 --- /dev/null +++ b/BUILD.md @@ -0,0 +1,23 @@ +# Building µLauncher + +## Using the command line + +Install JDK 17 and the Android Sdk. +Make sure that `JAVA_HOME` and `ANDROID_HOME` are set correctly. + +``` +git clone https://github.com/jrpie/Launcher +cd Launcher +./gradlew build +``` + + +See [this guide](https://developer.android.com/build/building-cmdline) +for further instructions. + + +## Using Android Studio +Install [Android Studio](https://developer.android.com/studio), import this project and build it. + +See [this guide](https://developer.android.com/studio/run) +for further instructions.