Skip to content

Commit 3d5a31b

Browse files
committed
fix raylib example
1 parent 8fde603 commit 3d5a31b

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,8 @@ jobs:
3535
- name: Setup Android SDK
3636
uses: android-actions/setup-android@v3
3737
with:
38-
# 29.0.0 = Android 10 (Used by Oculus Quest 2)
3938
# 35.0.0 = Android 15
40-
packages: 'tools platform-tools platforms;android-35 build-tools;29.0.0 ndk;35.0.0 ndk;29.0.13113456'
39+
packages: 'tools platform-tools platforms;android-35 build-tools;35.0.0 ndk;29.0.13113456'
4140

4241
#
4342
# Stable Zig Builds

examples/raylib/build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pub fn build(b: *std.Build) void {
1919

2020
const android_sdk = android.Sdk.create(b, .{});
2121
const apk = android_sdk.createApk(.{
22-
.api_level = .android10,
22+
.api_level = .android15,
2323
.build_tools_version = "35.0.1",
2424
.ndk_version = "29.0.13113456",
2525
});

0 commit comments

Comments
 (0)