| | |
| | | // AppsFlyerLib.h |
| | | // AppsFlyerLib |
| | | // |
| | | // AppsFlyer iOS SDK 6.11.0 (114) |
| | | // AppsFlyer iOS SDK 6.15.3 (217) |
| | | // Copyright (c) 2012-2023 AppsFlyer Ltd. All rights reserved. |
| | | // |
| | | |
| | |
| | | #import <AppsFlyerLib/AppsFlyerShareInviteHelper.h> |
| | | #import <AppsFlyerLib/AppsFlyerDeepLinkResult.h> |
| | | #import <AppsFlyerLib/AppsFlyerDeepLink.h> |
| | | #import <AppsFlyerLib/AppsFlyerConsent.h> |
| | | #import <AppsFlyerLib/AFSDKPurchaseDetails.h> |
| | | #import <AppsFlyerLib/AFSDKValidateAndLogResult.h> |
| | | #import <AppsFlyerLib/AFAdRevenueData.h> |
| | | |
| | | NS_ASSUME_NONNULL_BEGIN |
| | | |
| | |
| | | #define AFEventParamPreferredPriceRange @"af_preferred_price_range" //array of int (basically a tuple (min,max) but we'll use array of int and instruct the developer to use two values) |
| | | #define AFEventParamPreferredNeighborhoods @"af_preferred_neighborhoods" //array of string |
| | | #define AFEventParamPreferredNumStops @"af_preferred_num_stops" |
| | | |
| | | #define AFEventParamAdRevenueAdType @"af_adrev_ad_type" |
| | | #define AFEventParamAdRevenueNetworkName @"af_adrev_network_name" |
| | | #define AFEventParamAdRevenuePlacementId @"af_adrev_placement_id" |
| | | #define AFEventParamAdRevenueAdSize @"af_adrev_ad_size" |
| | | #define AFEventParamAdRevenueMediatedNetworkName @"af_adrev_mediated_network_name" |
| | | |
| | | |
| | | /// Mail hashing type |
| | | typedef enum { |
| | |
| | | [[AppsFlyerLib shared] setResolveDeepLinkURLs:@[@"domain.com", @"subdomain.domain.com"]]; |
| | | </pre> |
| | | */ |
| | | @property(nonatomic, nullable) NSArray<NSString *> *resolveDeepLinkURLs; |
| | | @property(nonatomic, nullable, copy) NSArray<NSString *> *resolveDeepLinkURLs; |
| | | |
| | | /** |
| | | For advertisers who use vanity OneLinks. |
| | |
| | | [[AppsFlyerLib shared] oneLinkCustomDomains:@[@"domain.com", @"subdomain.domain.com"]]; |
| | | </pre> |
| | | */ |
| | | @property(nonatomic, nullable) NSArray<NSString *> *oneLinkCustomDomains; |
| | | @property(nonatomic, nullable, copy) NSArray<NSString *> *oneLinkCustomDomains; |
| | | |
| | | /* |
| | | * Set phone number for each `start` event. `phoneNumber` will be sent as SHA256 string |
| | | */ |
| | | @property(nonatomic, nullable) NSString *phoneNumber; |
| | | @property(nonatomic, nullable, copy) NSString *phoneNumber; |
| | | |
| | | - (NSString *)phoneNumber UNAVAILABLE_ATTRIBUTE; |
| | | |
| | |
| | | AppsFlyerLib.shared().currentDeviceLanguage("EN") |
| | | </pre> |
| | | */ |
| | | @property(nonatomic, nullable) NSString *currentDeviceLanguage; |
| | | @property(nonatomic, nullable, copy) NSString *currentDeviceLanguage; |
| | | |
| | | /** |
| | | Internal API. Please don't use. |
| | |
| | | success:(void (^ _Nullable)(NSDictionary * response))successBlock |
| | | failure:(void (^ _Nullable)(NSError * _Nullable error, id _Nullable reponse))failedBlock NS_AVAILABLE(10_7, 7_0); |
| | | |
| | | typedef void (^AFSDKValidateAndLogCompletion)(AFSDKValidateAndLogResult * _Nullable result); |
| | | |
| | | /** |
| | | To log and validate in app purchases you can call this method from the completeTransaction: method on |
| | | your `SKPaymentTransactionObserver`. |
| | | |
| | | @param details The product details |
| | | @param extraEventValues The additional param, which you want to receive it in the raw reports |
| | | @param completionHandler The callback |
| | | */ |
| | | - (void)validateAndLogInAppPurchase:(AFSDKPurchaseDetails *)details |
| | | extraEventValues:(NSDictionary * _Nullable)extraEventValues |
| | | completionHandler:(AFSDKValidateAndLogCompletion)completionHandler NS_AVAILABLE(10_7, 7_0); |
| | | |
| | | /** |
| | | An API to provide the data from the impression payload to AdRevenue. |
| | | |
| | | @param adRevenueData object used to hold all mandatory parameters of AdRevenue event. |
| | | @param additionalParameters non-mandatory dictionary which can include pre-defined keys (kAppsFlyerAdRevenueCountry, etc) |
| | | */ |
| | | - (void)logAdRevenue:(AFAdRevenueData *)adRevenueData additionalParameters:(NSDictionary * _Nullable)additionalParameters; |
| | | |
| | | /** |
| | | To log location for geo-fencing. Does the same as code below. |
| | | |
| | |
| | | - (void)remoteDebuggingCallWithData:(NSString *)data; |
| | | |
| | | /** |
| | | This is for internal use. |
| | | */ |
| | | - (void)remoteDebuggingCallV2WithData:(NSString *)dataAsString; |
| | | |
| | | /** |
| | | Used to force the trigger `onAppOpenAttribution` delegate. |
| | | Notice, re-engagement, session and launch won't be counted. |
| | | Only for OneLink/UniversalLink/Deeplink resolving. |
| | |
| | | /** |
| | | API to set manually Facebook deferred app link |
| | | */ |
| | | @property(nonatomic, nullable) NSURL *facebookDeferredAppLink; |
| | | @property(nonatomic, nullable, copy) NSURL *facebookDeferredAppLink; |
| | | |
| | | /** |
| | | Block an events from being shared with ad networks and other 3rd party integrations |
| | | Must only include letters/digits or underscore, maximum length: 45 |
| | | */ |
| | | @property(nonatomic, nullable) NSArray<NSString *> *sharingFilter DEPRECATED_MSG_ATTRIBUTE("starting SDK version 6.4.0, please use `setSharingFilterForPartners:`"); |
| | | @property(nonatomic, nullable, copy) NSArray<NSString *> *sharingFilter DEPRECATED_MSG_ATTRIBUTE("starting SDK version 6.4.0, please use `setSharingFilterForPartners:`"); |
| | | |
| | | @property(nonatomic) NSUInteger deepLinkTimeout; |
| | | |
| | |
| | | */ |
| | | - (void)setSharingFilterForPartners:(NSArray<NSString *> * _Nullable)sharingFilter; |
| | | |
| | | |
| | | /** |
| | | Sets or updates the user consent data related to GDPR and DMA regulations for advertising and data usage |
| | | purposes within the application. This method must be invoked with the user's current consent status each |
| | | time the app starts or whenever there is a change in the user's consent preferences. |
| | | |
| | | Note that this method does not persist the consent data across app sessions; it only applies for the |
| | | duration of the current app session. If you wish to stop providing the consent data, you should |
| | | cease calling this method. |
| | | |
| | | @param consent an instance of AppsFlyerConsent that encapsulates the user's consent information. |
| | | */ |
| | | - (void)setConsentData:(AppsFlyerConsent *)consent; |
| | | |
| | | /** |
| | | Enable the SDK to collect and send TCF data |
| | | |
| | | @param shouldCollectConsentData indicates if the TCF data collection is enabled. |
| | | */ |
| | | - (void)enableTCFDataCollection:(BOOL)shouldCollectConsentData; |
| | | |
| | | /** |
| | | Validate if URL contains certain string and append quiery |
| | | parameters to deeplink URL. In case if URL does not contain user-defined string, |