From 49b8839fda3439edc31581527e84036e58f55f0f Mon Sep 17 00:00:00 2001 From: lpw <pengwei.li@gamehollywood.com> Date: Tue, 26 Jan 2021 09:43:00 +0800 Subject: [PATCH] 3.9.2 --- frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppLinkUtility.h | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppLinkUtility.h b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppLinkUtility.h index 44cc919..86c5121 100644 --- a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppLinkUtility.h +++ b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppLinkUtility.h @@ -16,6 +16,10 @@ // 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 + #import <Foundation/Foundation.h> NS_ASSUME_NONNULL_BEGIN @@ -75,6 +79,15 @@ */ + (nullable NSString *)appInvitePromotionCodeFromURL:(NSURL *)url; +/** + Check whether the scheme is defined in the app's URL schemes. + @param scheme the scheme of App Link URL + @return YES if the scheme is defined, otherwise NO. +*/ ++ (BOOL)isMatchURLScheme:(NSString *)scheme; + @end NS_ASSUME_NONNULL_END + +#endif -- Gitblit v1.8.0