From 113d3dd3f0ff38d9ad870fa7b20de6fe601c6cb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Wed, 13 Aug 2025 05:07:06 +0200 Subject: [PATCH] std.Target: bump default android API level from 24 to 29 According to https://apilevels.com, 88.5% of Android users are on 29+. Older API levels require libc as of https://github.com/ziglang/zig/pull/24629, which has confused some users. Seems reasonable to bump the default so most people won't be confused by this. --- lib/std/Target.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/std/Target.zig b/lib/std/Target.zig index f960a4bb4c0029698a82b343972ce2401e932b98..2aa3e0a70cb0c9e6ad1deafd3f739ecc547c6de6 100644 --- a/lib/std/Target.zig +++ b/lib/std/Target.zig @@ -482,7 +482,7 @@ pub const Os = struct { break :blk default_min; }, - .android = 24, + .android = 29, }, }, .rtems => .{ -- 2.54.0