From b19a78b27247f5f0761c35b5b3e8a41876eabb05 Mon Sep 17 00:00:00 2001 From: lpw <pengwei.li@gamehollywood.com> Date: Tue, 20 Apr 2021 17:18:32 +0800 Subject: [PATCH] no message --- frameworks/FBSDKShareKit.framework/Headers/FBSDKShareDialog.h | 27 ++++++++++++++++++++++++--- 1 files changed, 24 insertions(+), 3 deletions(-) diff --git a/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareDialog.h b/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareDialog.h index c801344..3334523 100644 --- a/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareDialog.h +++ b/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareDialog.h @@ -16,11 +16,30 @@ // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +#import "TargetConditionals.h" + +#if TARGET_OS_TV + +// This is an unfortunate hack for Swift Package Manager support. +// SPM does not allow us to conditionally exclude Swift files for compilation by platform. +// +// So to support tvOS with SPM we need to use runtime availability checks in the Swift files. +// This means that even though the Swift extension of ShareDialog will never be run for tvOS +// targets, it still needs to be able to compile. Hence we need to declare it here. +// +// The way to fix this is to remove extensions of ObjC types in Swift. + +NS_SWIFT_NAME(ShareDialog) +@interface FBSDKShareDialog : NSObject +@end + +#else + #import <UIKit/UIKit.h> -#import <FBSDKShareKit/FBSDKShareDialogMode.h> -#import <FBSDKShareKit/FBSDKSharing.h> -#import <FBSDKShareKit/FBSDKSharingContent.h> +#import "FBSDKShareDialogMode.h" +#import "FBSDKSharing.h" +#import "FBSDKSharingContent.h" NS_ASSUME_NONNULL_BEGIN @@ -69,3 +88,5 @@ @end NS_ASSUME_NONNULL_END + +#endif -- Gitblit v1.8.0