From bdc87c7bc6582f1be10774cf03664a7f9ee8e724 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Thu, 12 Jun 2025 17:26:39 +0200 Subject: [PATCH] Update min supported version of macOS to 13 and iOS to 15 --- Source/Editor/Cooker/Platform/Mac/MacPlatformTools.cpp | 2 +- Source/Tools/Flax.Build/Platforms/Mac/MacToolchain.cs | 2 +- Source/Tools/Flax.Build/Platforms/iOS/iOSToolchain.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Editor/Cooker/Platform/Mac/MacPlatformTools.cpp b/Source/Editor/Cooker/Platform/Mac/MacPlatformTools.cpp index 69f32f588..1d447027b 100644 --- a/Source/Editor/Cooker/Platform/Mac/MacPlatformTools.cpp +++ b/Source/Editor/Cooker/Platform/Mac/MacPlatformTools.cpp @@ -186,7 +186,7 @@ bool MacPlatformTools::OnPostProcess(CookingData& data) ADD_ENTRY("CFBundlePackageType", "APPL"); ADD_ENTRY("NSPrincipalClass", "NSApplication"); ADD_ENTRY("LSApplicationCategoryType", "public.app-category.games"); - ADD_ENTRY("LSMinimumSystemVersion", "10.15"); + ADD_ENTRY("LSMinimumSystemVersion", "13"); ADD_ENTRY("CFBundleIconFile", "icon.icns"); ADD_ENTRY_STR("CFBundleExecutable", executableName); ADD_ENTRY_STR("CFBundleIdentifier", appIdentifier); diff --git a/Source/Tools/Flax.Build/Platforms/Mac/MacToolchain.cs b/Source/Tools/Flax.Build/Platforms/Mac/MacToolchain.cs index a9210274f..1d5315626 100644 --- a/Source/Tools/Flax.Build/Platforms/Mac/MacToolchain.cs +++ b/Source/Tools/Flax.Build/Platforms/Mac/MacToolchain.cs @@ -11,7 +11,7 @@ namespace Flax.Build /// Specifies the minimum Mac OSX version to use (eg. 10.14). /// [CommandLine("macOSXMinVer", "", "Specifies the minimum Mac OSX version to use (eg. 10.14).")] - public static string MacOSXMinVer = "10.15"; + public static string MacOSXMinVer = "13"; } } diff --git a/Source/Tools/Flax.Build/Platforms/iOS/iOSToolchain.cs b/Source/Tools/Flax.Build/Platforms/iOS/iOSToolchain.cs index 58bf44b77..44647a607 100644 --- a/Source/Tools/Flax.Build/Platforms/iOS/iOSToolchain.cs +++ b/Source/Tools/Flax.Build/Platforms/iOS/iOSToolchain.cs @@ -12,7 +12,7 @@ namespace Flax.Build /// Specifies the minimum iOS version to use (eg. 14). /// [CommandLine("iOSMinVer", "", "Specifies the minimum iOS version to use (eg. 14).")] - public static string iOSMinVer = "14"; + public static string iOSMinVer = "15"; } }