diff --git a/src/Constants.tvos.cs.in b/src/Constants.tvos.cs.in index 723ff06f9c..91b97acb66 100644 --- a/src/Constants.tvos.cs.in +++ b/src/Constants.tvos.cs.in @@ -60,8 +60,11 @@ namespace ObjCRuntime { public const string MapKitLibrary = "/System/Library/Frameworks/MapKit.framework/MapKit"; // TVOS 10.0 + public const string ExternalAccessoryLibrary = "/System/Library/Frameworks/ExternalAccessory.framework/ExternalAccessory"; + public const string MultipeerConnectivityLibrary = "/System/Library/Frameworks/MultipeerConnectivity.framework/MultipeerConnectivity"; public const string PhotosLibrary = "/System/Library/Frameworks/Photos.framework/Photos"; - public const string VideoSubscriberAccountLibrary = "/System/Library/Frameworks/VideoSubscriberAccount.framework/VideoSubscriberAccount"; + public const string ReplayKitLibrary = "/System/Library/Frameworks/ReplayKit.framework/ReplayKit"; public const string UserNotificationsLibrary = "/System/Library/Frameworks/UserNotifications.framework/UserNotifications"; + public const string VideoSubscriberAccountLibrary = "/System/Library/Frameworks/VideoSubscriberAccount.framework/VideoSubscriberAccount"; } } diff --git a/src/frameworks.sources b/src/frameworks.sources index 08e224b61a..f40e92d74f 100644 --- a/src/frameworks.sources +++ b/src/frameworks.sources @@ -1673,8 +1673,10 @@ TVOS_FRAMEWORKS = \ MetalPerformanceShaders \ MobileCoreServices \ ModelIO \ + MultipeerConnectivity \ OpenGLES \ Photos \ + ReplayKit \ SceneKit \ Security \ SpriteKit \ diff --git a/tools/common/Frameworks.cs b/tools/common/Frameworks.cs index 09d17dd555..5bf9dfa5f7 100644 --- a/tools/common/Frameworks.cs +++ b/tools/common/Frameworks.cs @@ -312,8 +312,13 @@ public class Frameworks : Dictionary { "TVServices", "TVServices", 9 }, { "UIKit", "UIKit", 9 }, - { "VideoSubscriberAccount", "VideoSubscriberAccount", 10 }, + { "MapKit", "MapKit", 9, 2 }, + + //{ "ExternalAccessory", "ExternalAccessory", 10 }, + { "MultipeerConnectivity", 10 }, + { "ReplayKit", "ReplayKit", 10 }, { "UserNotifications", "UserNotifications", 10 }, + { "VideoSubscriberAccount", "VideoSubscriberAccount", 10 }, }; } return tvos_frameworks;