Files
UnrealEngineUWP/Engine/Source/Programs/UnrealBuildTool/Platform/Android/AndroidPlatformSDK.Versions.cs
dmytro ivanov 2536e616e1 Update cmake to 3.22.1
#jira UE-192126
#rb Chris.Babcock

[CL 26894364 by dmytro ivanov in ue5-main branch]
2023-08-07 14:56:20 -04:00

32 lines
866 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using EpicGames.Core;
namespace UnrealBuildTool
{
/////////////////////////////////////////////////////////////////////////////////////
// If you are looking for any version numbers not listed here, see GDK_SDK.json
/////////////////////////////////////////////////////////////////////////////////////
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())
{
case "platforms": return "android-33";
case "build-tools": return "33.0.1";
case "cmake": return "3.22.1";
case "ndk": return "25.1.8937393";
}
return "";
}
}
}