-
Notifications
You must be signed in to change notification settings - Fork 514
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Xcode12][NearbyInteraction] New framework, updated through beta 4 #9336
[Xcode12][NearbyInteraction] New framework, updated through beta 4 #9336
Conversation
Build failure Test results1 tests failed, 78 tests passed.Failed tests
|
@@ -68,6 +68,13 @@ protected virtual bool Skip (Type type) | |||
return true; | |||
case "NEPacketTunnelProvider": | |||
return true; | |||
// On iOS 14 (beta 4) we get: [NISimulator] To simulate Nearby Interaction distance and direction, launch two or more simulators and | |||
// move the simulator windows around the screen. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This sounds like a great reason to request a bigger screen 😄
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I got you covered https://www.samsung.com/us/computing/monitors/gaming/49--odyssey-g9-gaming-monitor-lc49g95tssnxza/ and if that is not enough you can get 2 of these https://www.staples.com/LG-86BH5C-B-86-LED-Display/product_IM12U5216
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👀 Looking for bigger apartment listings to accommodate an 86" monitor or two....
@whitneyschmidt failure is unrelated, looks like https://github.com/xamarin/maccore/issues/1028 I believe we are ok to merge the PR. |
[NoWatch, NoTV, NoMac, iOS (14, 0)] | ||
[Static] | ||
interface NIErrorDomain | ||
{ | ||
[Field ("NIErrorDomain")] | ||
NSString Domain { get; } | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This needs to be in the NIErrorCode
error enum like this
xamarin-macios/src/fileproviderui.cs
Lines 22 to 29 in 65237b9
[iOS (11,0)] | |
[Mac (10,15)] | |
[ErrorDomain ("FPUIErrorDomain")] | |
[Native] | |
enum FPUIExtensionErrorCode : ulong { | |
UserCancelled, | |
Failed | |
} |
See https://github.com/xamarin/maccore/issues/2274 - added to Xcode 12 checklist as well.
Update for manual binding: #9346