Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/storekit.cs
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,8 @@ interface SKCloudServiceController {
NSString CloudServiceCapabilitiesDidChangeNotification { get; }
}

[NoTV, iOS (10,1)]
[iOS (10,1)]
[NoTV] // __TVOS_PROHIBITED
[BaseType (typeof(UIViewController))]
interface SKCloudServiceSetupViewController
{
Expand All @@ -491,7 +492,8 @@ interface SKCloudServiceSetupViewController

interface ISKCloudServiceSetupViewControllerDelegate {}

[NoTV, iOS (10,1)]
[iOS (10,1)]
[NoTV] // __TVOS_PROHIBITED on the only member + SKCloudServiceSetupViewController is not in tvOS
[Protocol, Model]
[BaseType (typeof(NSObject))]
interface SKCloudServiceSetupViewControllerDelegate
Expand Down
7 changes: 7 additions & 0 deletions tests/xtro-sharpie/tvos.ignore
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,13 @@
## but the delegate itself is not marked (so it's reported as missing)
!missing-protocol! SKStoreProductViewControllerDelegate not bound

## SKCloudServiceSetupViewController is not in tvOS and the only member of the delegate is not either
## but the delegate itself is not marked (so it's reported as missing)
!missing-field! SKCloudServiceSetupActionSubscribe not bound
!missing-field! SKCloudServiceSetupOptionsActionKey not bound
!missing-field! SKCloudServiceSetupOptionsITunesItemIdentifierKey not bound
!missing-protocol! SKCloudServiceSetupViewControllerDelegate not bound


# UIKit

Expand Down