diff --git a/tools/common/Application.cs b/tools/common/Application.cs index edd39f06a8..4d51dc28f9 100644 --- a/tools/common/Application.cs +++ b/tools/common/Application.cs @@ -511,6 +511,9 @@ namespace Xamarin.Bundler { if (IsSimulatorBuild) return false; + if (Platform == ApplePlatform.MacCatalyst) + return false; + return MarshalObjectiveCExceptions == MarshalObjectiveCExceptionMode.ThrowManagedException || MarshalObjectiveCExceptions == MarshalObjectiveCExceptionMode.Abort; } }