2022-04-12 12:37:37 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
using EpicGames.Core;
|
|
|
|
|
|
|
|
|
|
namespace UnrealBuildTool
|
|
|
|
|
{
|
2023-06-21 11:21:01 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// If you are looking for any version numbers not listed here, see GDK_SDK.json
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2022-04-12 12:37:37 -04:00
|
|
|
partial class AndroidPlatformSDK : UEBuildPlatformSDK
|
|
|
|
|
{
|
|
|
|
|
protected override void GetValidSoftwareVersionRange(out string? MinVersion, out string? MaxVersion)
|
|
|
|
|
{
|
|
|
|
|
MinVersion = MaxVersion = null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string GetPlatformSpecificVersion(string VersionType)
|
|
|
|
|
{
|
|
|
|
|
switch (VersionType.ToLower())
|
|
|
|
|
{
|
2023-05-26 16:03:01 -04:00
|
|
|
case "platforms": return "android-33";
|
|
|
|
|
case "build-tools": return "33.0.1";
|
2023-08-07 14:56:20 -04:00
|
|
|
case "cmake": return "3.22.1";
|
2022-10-11 23:32:22 -04:00
|
|
|
case "ndk": return "25.1.8937393";
|
2022-04-12 12:37:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|