From b0be01bb3bb97701825d35334365a2a9af478f9e Mon Sep 17 00:00:00 2001 From: Tobias Date: Sat, 3 Jun 2023 16:32:02 +0200 Subject: [PATCH] Add Android Build Guide --- Building-For-Android.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Building-For-Android.md diff --git a/Building-For-Android.md b/Building-For-Android.md new file mode 100644 index 0000000..b094bb7 --- /dev/null +++ b/Building-For-Android.md @@ -0,0 +1,23 @@ +## Note: These build instructions are a work-in-progress. +### Dependencies +* [Android Studio](https://developer.android.com/studio) +* [NDK and CMake](https://developer.android.com/studio/projects/install-ndk#default-version) +* [Git](https://git-scm.com/download) +### Cloning yuzu with Git +``` +git clone --recursive https://github.com/yuzu-emu/yuzu.git +``` +Citra by default will be cloned into - +* `C:\Users\\yuzu` on Windows +* `~/yuzu` on Linux +* And wherever on macOS +### Building +1. Start Android Studio, on the startup dialog select `Open`. +2. Navigate to the `yuzu/src/android` directory and click on `OK`. +3. In `Build > Select Build Variant`, select `release` or `relWithDebInfo` as the "Active build variant". +4. Build the project with `Build > Make Project` or run it on an Android device with `Run > Run 'app'`. + +### Additional Resources +https://developer.android.com/studio/intro + + \ No newline at end of file