diff --git a/src/UIKit/UIMenu.cs b/src/UIKit/UIMenu.cs index 4b2c58108880..c129a28aa112 100644 --- a/src/UIKit/UIMenu.cs +++ b/src/UIKit/UIMenu.cs @@ -15,7 +15,7 @@ public partial class UIMenu { [SupportedOSPlatform ("maccatalyst15.0")] #else [iOS (15, 0)] - [TV (15,0)] + [TV (15, 0)] #endif public virtual UIMenuElement [] SelectedElements { get { diff --git a/tools/common/Frameworks.cs b/tools/common/Frameworks.cs index 5670c3dd7915..2a486de3d003 100644 --- a/tools/common/Frameworks.cs +++ b/tools/common/Frameworks.cs @@ -799,6 +799,12 @@ static bool FilterFrameworks (Application app, Framework framework) return false; } break; + case "NewsstandKit": + if (Driver.XcodeVersion.Major >= 15) { + Driver.Log (3, "Not linking with the framework {0} because it's been removed from Xcode 15+.", framework.Name); + return false; + } + break; } break; case ApplePlatform.TVOS: