From 4a7eb1621cd1e935e6ea400eca7c3b3879c6f3a6 Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Thu, 28 Sep 2017 21:36:05 -0500 Subject: [PATCH] [Intents] Update to Xcode 9.1 Beta 1 (#2813) --- src/intents.cs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/intents.cs b/src/intents.cs index bd26563e3e..ebbdb54f29 100644 --- a/src/intents.cs +++ b/src/intents.cs @@ -445,6 +445,8 @@ namespace XamCore.Intents { FailureNoBankAccount, [iOS (11,0), Watch (4,0)] FailureNotEligible, + [iOS (11,1), Watch (4,1)] + FailureTermsAndConditionsAcceptanceRequired, } [Introduced (PlatformName.iOS, 10, 0)] @@ -602,8 +604,10 @@ namespace XamCore.Intents { FailureInsufficientFunds, FailureNoBankAccount, [Introduced (PlatformName.iOS, 11, 0)] - [Introduced (PlatformName.MacOSX, 10, 13, PlatformArchitecture.Arch64)] + [Introduced (PlatformName.WatchOS, 4, 0)] FailureNotEligible, + [iOS (11,1), Watch (4,1)] + FailureTermsAndConditionsAcceptanceRequired, } [Introduced (PlatformName.iOS, 10, 0)] @@ -1189,6 +1193,8 @@ namespace XamCore.Intents { public enum INRequestPaymentPayerUnsupportedReason : nint { CredentialsUnverified = 1, NoAccount, + [Watch (4,1), iOS (11,1)] + NoValidHandle, } [Watch (4,0), NoMac, iOS (11,0)] @@ -1244,6 +1250,8 @@ namespace XamCore.Intents { CredentialsUnverified = 1, InsufficientFunds, NoAccount, + [Watch (4,1), iOS (11,1)] + NoValidHandle, } [NoWatch, NoMac, iOS (11,0)]