Manuel de la Pena
Manuel de la Pena
We have found the following xtro issue when binding the SharedWithYouCore: ``` !extra-designated-initializer! SWCollaborationOption::initWithCoder: is incorrectly decorated with an [DesignatedInitializer] attribute ``` Yet the binding is as follows: ```csharp [NoWatch,...
The error happens in one of the xcode14 PRs, having the following code in the bindings: ```csharp [NoiOS, NoTV, NoWatch, Mac (12,3), NoMacCatalyst] [ErrorDomain ("SCStreamErrorDomain")] [Native] enum SCStreamErrorCode : long...
Following issue https://github.com/xamarin/xamarin-macios/issues/15445 we found out that the reason for the bug was a developer doing the bind wrongly and re-ordering the enum in alphabetical order. This might have been...
InputMethodKit bindings are missing from Xamarin.Mac. A [PR](https://github.com/xamarin/xamarin-macios/pull/1930) was created but it has been been closed and uncompleted due to outstanding issues. If this API is important you, please comment...
The following CoreMIDI APIs ere not reported as not bound on Mac OS X. A new change in xtro reports them but we should consider if binding them needs to...
The make file does not list all the .cs files used by xharness, which means that if we modify the source and do make runner, the project is not rebuilt,...
We have APIs that do point to a NSNumber that can be null and we use bind as, for example, we find cases were we have to write: ```csharp [NullAllowed]...
Create a smart enum for the following: ```csharp [iOS (7,0)] [UnifiedInternal, Field ("AVAudioSessionPolarPatternOmnidirectional")] NSString PolarPatternOmnidirectional { get; } [iOS (7,0)] [UnifiedInternal, Field ("AVAudioSessionPolarPatternCardioid")] NSString PolarPatternCardioid { get; } [iOS (7,0)]...