Update min supported version of macOS to 13 and iOS to 15
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -11,7 +11,7 @@ namespace Flax.Build
|
||||
/// Specifies the minimum Mac OSX version to use (eg. 10.14).
|
||||
/// </summary>
|
||||
[CommandLine("macOSXMinVer", "<version>", "Specifies the minimum Mac OSX version to use (eg. 10.14).")]
|
||||
public static string MacOSXMinVer = "10.15";
|
||||
public static string MacOSXMinVer = "13";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ namespace Flax.Build
|
||||
/// Specifies the minimum iOS version to use (eg. 14).
|
||||
/// </summary>
|
||||
[CommandLine("iOSMinVer", "<version>", "Specifies the minimum iOS version to use (eg. 14).")]
|
||||
public static string iOSMinVer = "14";
|
||||
public static string iOSMinVer = "15";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user