Skip to content

Commit 9a0c966

Browse files
committed
Bump target Android API level to 36
1 parent 10b1311 commit 9a0c966

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ jobs:
148148
runs-on: ubuntu-latest
149149
strategy:
150150
matrix:
151-
api-level: [26, 35]
151+
api-level: [26, 36]
152152

153153
steps:
154154
- uses: actions/checkout@v6

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
### Requirements
2222
Before you can build the app from source, you'll need to grab a few things.
2323

24-
- Install Android Studio with at least the Platform SDK (e.g. version 35) and the NDK Tools (e.g. version 26).
25-
- Install jdk 17 (potentially included with Android Studio)
26-
- Install [rust](https://rustup.rs/)
24+
- Install Android Studio with at least the Platform SDK (e.g. version 36) and the NDK Tools (e.g. version 27).
25+
- Install JDK 17 (potentially included with Android Studio)
26+
- Install [Rust](https://rustup.rs/)
2727
- `cargo install cargo-ndk`
2828
- `rustup target add aarch64-linux-android armv7-linux-androideabi x86_64-linux-android i686-linux-android`
29-
- 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/`
29+
- 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/`
3030

3131
### Building from Command Line
3232
If you're completely using the command line and bypassing Android Studio, make sure that the `local.properties`

app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ plugins {
2121

2222
android {
2323
namespace = "rs.ruffle"
24-
compileSdk = 35
24+
compileSdk = 36
2525

2626
defaultConfig {
2727
applicationId = "rs.ruffle"

0 commit comments

Comments
 (0)