lib/systems: remove android cruft

These used legacy names for Android SDK and NDK versions, so now we can
do away with them.
This commit is contained in:
Morgan Jones 2025-05-12 23:43:16 -07:00
parent 688122cd5d
commit 9d3c069cbd
No known key found for this signature in database
GPG key ID: 5C3EB94D198F1491

View file

@ -352,21 +352,9 @@ let
else
null;
# Remove before 25.05
androidSdkVersion =
if (args ? sdkVer && !args ? androidSdkVersion) then
throw "For android `sdkVer` has been renamed to `androidSdkVersion`"
else if (args ? androidSdkVersion) then
args.androidSdkVersion
else
null;
androidNdkVersion =
if (args ? ndkVer && !args ? androidNdkVersion) then
throw "For android `ndkVer` has been renamed to `androidNdkVersion`"
else if (args ? androidSdkVersion) then
args.androidNdkVersion
else
null;
# Handle Android SDK and NDK versions.
androidSdkVersion = args.androidSdkVersion or null;
androidNdkVersion = args.androidNdkVersion or null;
}
// (
let