From ee5807a1091369c5feb424ae1a59f863ab409586 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?T=C3=96R=C3=96K=20Attila?= Date: Mon, 18 Aug 2025 18:00:42 +0200 Subject: [PATCH] Bump target Android API level to 36 --- .github/workflows/build.yml | 2 +- CONTRIBUTING.md | 8 ++++---- app/build.gradle.kts | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8e3a3eb0..5ae236bf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -144,7 +144,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - api-level: [26, 35] + api-level: [26, 36] steps: - uses: actions/checkout@v5 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 71fd3bbe..f1278230 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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` diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 115e3776..c2530ce6 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -21,7 +21,7 @@ plugins { android { namespace = "rs.ruffle" - compileSdk = 35 + compileSdk = 36 defaultConfig { applicationId = "rs.ruffle"