From 69eea9841717e4e9309bceebed466c86fb2287c6 Mon Sep 17 00:00:00 2001 From: lpw Date: Sat, 03 Jun 2023 09:17:27 +0800 Subject: [PATCH] 3.15.0 --- frameworks/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib.h | 52 ++++++++++++++++++++++++++++++++++++++++++---------- 1 files changed, 42 insertions(+), 10 deletions(-) diff --git a/frameworks/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib.h b/frameworks/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib.h index eeab40a..e72bea0 100644 --- a/frameworks/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib.h +++ b/frameworks/AppsFlyerLib.xcframework/macos-arm64_x86_64/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLib.h @@ -2,16 +2,16 @@ // AppsFlyerLib.h // AppsFlyerLib // -// AppsFlyer iOS SDK 6.5.1 (51) -// Copyright (c) 2012-2020 AppsFlyer Ltd. All rights reserved. +// AppsFlyer iOS SDK 6.11.0 (114) +// Copyright (c) 2012-2023 AppsFlyer Ltd. All rights reserved. // #import <Foundation/Foundation.h> -#import "AppsFlyerCrossPromotionHelper.h" -#import "AppsFlyerShareInviteHelper.h" -#import "AppsFlyerDeepLinkResult.h" -#import "AppsFlyerDeepLink.h" +#import <AppsFlyerLib/AppsFlyerCrossPromotionHelper.h> +#import <AppsFlyerLib/AppsFlyerShareInviteHelper.h> +#import <AppsFlyerLib/AppsFlyerDeepLinkResult.h> +#import <AppsFlyerLib/AppsFlyerDeepLink.h> NS_ASSUME_NONNULL_BEGIN @@ -95,6 +95,7 @@ #define AFEventParam8 @"af_param_8" #define AFEventParam9 @"af_param_9" #define AFEventParam10 @"af_param_10" +#define AFEventParamTouch @"af_touch_obj" #define AFEventParamDepartingDepartureDate @"af_departing_departure_date" #define AFEventParamReturningDepartureDate @"af_returning_departure_date" @@ -130,17 +131,34 @@ #define AFEventParamAdRevenueAdSize @"af_adrev_ad_size" #define AFEventParamAdRevenueMediatedNetworkName @"af_adrev_mediated_network_name" + /// Mail hashing type typedef enum { /// None EmailCryptTypeNone = 0, - /// SHA1 - EmailCryptTypeSHA1 = 1, - /// MD5 - EmailCryptTypeMD5 = 2, /// SHA256 EmailCryptTypeSHA256 = 3 } EmailCryptType; + +typedef NS_CLOSED_ENUM(NSInteger, AFSDKPlugin) { + AFSDKPluginIOSNative, + AFSDKPluginUnity, + AFSDKPluginFlutter, + AFSDKPluginReactNative, + AFSDKPluginAdobeAir, + AFSDKPluginAdobeMobile, + AFSDKPluginCocos2dx, + AFSDKPluginCordova, + AFSDKPluginMparticle, + AFSDKPluginNativeScript, + AFSDKPluginExpo, + AFSDKPluginUnreal, + AFSDKPluginXamarin, + AFSDKPluginCapacitor, + AFSDKPluginSegment, + AFSDKPluginAdobeSwiftAEP +} NS_SWIFT_NAME(Plugin); + NS_SWIFT_NAME(DeepLinkDelegate) @protocol AppsFlyerDeepLinkDelegate <NSObject> @@ -210,6 +228,9 @@ @return The singleton instance of AppsFlyerLib. */ + (AppsFlyerLib *)shared; + + +- (void)setUpInteroperabilityObject:(id)object; /** In case you use your own user ID in your app, you can set this property to that ID. @@ -297,6 +318,9 @@ */ @property(atomic) BOOL disableCollectASA; +/** + Disable Apple Ads Attribution API +[AAAtribution attributionTokenWithError:] + */ @property(nonatomic) BOOL disableAppleAdsAttribution; /** @@ -368,6 +392,14 @@ @property(nonatomic, nullable) NSString *currentDeviceLanguage; /** + Internal API. Please don't use. + */ +- (void)setPluginInfoWith:(AFSDKPlugin)plugin + pluginVersion:(NSString *)version + additionalParams:(NSDictionary * _Nullable)additionalParams +NS_SWIFT_NAME(setPluginInfo(plugin:version:additionalParams:)); + +/** Enable the collection of Facebook Deferred AppLinks Requires Facebook SDK and Facebook app on target/client device. This API must be invoked prior to initializing the AppsFlyer SDK in order to function properly. -- Gitblit v1.8.0