mirror of
https://github.com/jrpie/Launcher.git
synced 2025-02-23 14:31:30 +01:00
25 lines
578 B
Markdown
25 lines
578 B
Markdown
# 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
|
|
```
|
|
|
|
Note that you need to sign the apk.
|
|
|
|
|
|
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.
|