Skip to content

Commit 1edf1eb

Browse files
committed
Bump target Android API level to 36
1 parent b601fc0 commit 1edf1eb

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ jobs:
144144
runs-on: ubuntu-latest
145145
strategy:
146146
matrix:
147-
api-level: [26, 35]
147+
api-level: [26, 36]
148148

149149
steps:
150150
- uses: actions/checkout@v5

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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ plugins {
2121

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

2626
defaultConfig {
2727
applicationId = "rs.ruffle"
2828
minSdk = 26
29-
targetSdk = 35
29+
targetSdk = 36
3030
versionCode = 250817
3131
versionName = "0.250817"
3232

0 commit comments

Comments
 (0)