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.
1 files changed, 1 insertions(+), 1 deletions(-)
lib
std
lib/std/Target.zig+1-1
| ... | ... | @@ -482,7 +482,7 @@ pub const Os = struct { |
| 482 | 482 | |
| 483 | 483 | break :blk default_min; |
| 484 | 484 | }, |
| 485 | | .android = 24, |
| 485 | .android = 29, |
| 486 | 486 | }, |
| 487 | 487 | }, |
| 488 | 488 | .rtems => .{ |