Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
api-level: [26, 35]
api-level: [26, 36]

steps:
- uses: actions/checkout@v5
Expand Down
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@
### Requirements
Before you can build the app from source, you'll need to grab a few things.

- Install Android Studio with at least the Platform SDK (e.g. version 35) and the NDK Tools (e.g. version 26).
- Install jdk 17 (potentially included with Android Studio)
- Install [rust](https://rustup.rs/)
- Install Android Studio with at least the Platform SDK (e.g. version 36) and the NDK Tools (e.g. version 27).
- Install JDK 17 (potentially included with Android Studio)
- Install [Rust](https://rustup.rs/)
- `cargo install cargo-ndk`
- `rustup target add aarch64-linux-android armv7-linux-androideabi x86_64-linux-android i686-linux-android`
- Set the `ANDROID_NDK_ROOT` environment variable to the location of the versioned ndk folder - for example `ANDROID_NDK_ROOT=$HOME/Android/Sdk/ndk/24.0.8215888/`
- Set the `ANDROID_NDK_ROOT` environment variable to the location of the versioned ndk folder - for example `ANDROID_NDK_ROOT=$HOME/Android/Sdk/ndk/27.3.13750724/`

### Building from Command Line
If you're completely using the command line and bypassing Android Studio, make sure that the `local.properties`
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ plugins {

android {
namespace = "rs.ruffle"
compileSdk = 35
compileSdk = 36

defaultConfig {
applicationId = "rs.ruffle"
Expand Down
Loading