diff --git a/configure.sh b/configure.sh index 48a8bb0763..aeb0e23905 100755 --- a/configure.sh +++ b/configure.sh @@ -33,6 +33,7 @@ else #define ALOHALYTICS_URL "" #define FLURRY_KEY "12345678901234567890" #define APPSFLYER_KEY "" +#define APPSFLYER_APP_ID_IOS "" #define MY_TRACKER_KEY "" #define MY_TARGET_KEY 0 #define MY_TARGET_RB_KEY 0 diff --git a/iphone/Maps/3party/AppsFlyerLib.framework/AppsFlyerLib b/iphone/Maps/3party/AppsFlyerLib.framework/AppsFlyerLib new file mode 120000 index 0000000000..fd96586f85 --- /dev/null +++ b/iphone/Maps/3party/AppsFlyerLib.framework/AppsFlyerLib @@ -0,0 +1 @@ +Versions/Current/AppsFlyerLib \ No newline at end of file diff --git a/iphone/Maps/3party/AppsFlyerLib.framework/Headers b/iphone/Maps/3party/AppsFlyerLib.framework/Headers new file mode 120000 index 0000000000..a177d2a6b9 --- /dev/null +++ b/iphone/Maps/3party/AppsFlyerLib.framework/Headers @@ -0,0 +1 @@ +Versions/Current/Headers \ No newline at end of file diff --git a/iphone/Maps/3party/AppsFlyerLib.framework/Modules/module.modulemap b/iphone/Maps/3party/AppsFlyerLib.framework/Modules/module.modulemap new file mode 100644 index 0000000000..047c0b9dac --- /dev/null +++ b/iphone/Maps/3party/AppsFlyerLib.framework/Modules/module.modulemap @@ -0,0 +1,6 @@ +framework module AppsFlyerLib { + umbrella header "AppsFlyerTracker.h" + + export * + module * { export * } +} \ No newline at end of file diff --git a/iphone/Maps/3party/AppsFlyerLib.framework/Versions/A/AppsFlyerLib b/iphone/Maps/3party/AppsFlyerLib.framework/Versions/A/AppsFlyerLib new file mode 100644 index 0000000000..a38545d6b6 Binary files /dev/null and b/iphone/Maps/3party/AppsFlyerLib.framework/Versions/A/AppsFlyerLib differ diff --git a/iphone/Maps/3party/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerCrossPromotionHelper.h b/iphone/Maps/3party/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerCrossPromotionHelper.h new file mode 100644 index 0000000000..7588f820f4 --- /dev/null +++ b/iphone/Maps/3party/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerCrossPromotionHelper.h @@ -0,0 +1,25 @@ +// +// CrossPromotionHelper.h +// AppsFlyerLib +// +// Created by Gil Meroz on 27/01/2017. +// +// + +#import +#import + + +NS_ASSUME_NONNULL_BEGIN + +@interface AppsFlyerCrossPromotionHelper : NSObject ++ (void) trackCrossPromoteImpression:(nonnull NSString*) appID + campaign:(nullable NSString*) campaign; + ++ (void) trackAndOpenStore:(nonnull NSString*) appID + campaign:(nullable NSString *) campaign + paramters:(nullable NSDictionary*) parameters + openStore:(void (^)(NSURLSession *urlSession,NSURL *clickURL))openStoreBlock; +@end + +NS_ASSUME_NONNULL_END diff --git a/iphone/Maps/3party/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLinkGenerator.h b/iphone/Maps/3party/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLinkGenerator.h new file mode 100644 index 0000000000..9ed4178c3f --- /dev/null +++ b/iphone/Maps/3party/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerLinkGenerator.h @@ -0,0 +1,40 @@ +// +// LinkGenerator.h +// AppsFlyerLib +// +// Created by Gil Meroz on 27/01/2017. +// +// + +#import + +NS_ASSUME_NONNULL_BEGIN + +/*! + * Payload container for the `generateInviteUrlWithLinkGenerator:completionHandler:` from `AppsFlyerShareInviteHelper` + */ +@interface AppsFlyerLinkGenerator: NSObject + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + +/// The channel through which the invite was sent (e.g. Facebook/Gmail/etc.). Usage: Recommended +- (void)setChannel :(nonnull NSString *)channel; +- (void)setReferrerCustomerId:(nonnull NSString *)referrerCustomerId; +/// A campaign name. Usage: Optional +- (void)setCampaign :(nonnull NSString *)campaign; +- (void)setReferrerUID :(nonnull NSString *)referrerUID; +- (void)setReferrerName :(nonnull NSString *)referrerName; +/// The URL to referrer user avatar. Usage: Optional +- (void)setReferrerImageURL :(nonnull NSString *)referrerImageURL; +- (void)setAppleAppID :(nonnull NSString *)appleAppID; +- (void)setDeeplinkPath :(nonnull NSString *)deeplinkPath; +- (void)setBaseDeeplink :(nonnull NSString *)baseDeeplink; +/// A single key value custom parameter. Usage: Optional +- (void)addParameterValue :(nonnull NSString *)value forKey:(NSString*)key; +/// Multiple key value custom parameters. Usage: Optional +- (void)addParameters :(nonnull NSDictionary *)parameters; + +@end + +NS_ASSUME_NONNULL_END diff --git a/iphone/Maps/3party/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerShareInviteHelper.h b/iphone/Maps/3party/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerShareInviteHelper.h new file mode 100644 index 0000000000..6ab745e00c --- /dev/null +++ b/iphone/Maps/3party/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerShareInviteHelper.h @@ -0,0 +1,33 @@ +// +// ShareInviteHelper.h +// AppsFlyerLib +// +// Created by Gil Meroz on 27/01/2017. +// +// + +#import +#import "AppsFlyerLinkGenerator.h" + +@interface AppsFlyerShareInviteHelper : NSObject + +NS_ASSUME_NONNULL_BEGIN + +/*! + * The AppsFlyerShareInviteHelper class builds the invite URL according to various setter methods + * which allow passing on additional information on the click. + * This information is available through `onConversionDataReceived:` when the user accepts the invite and installs the app. + * In addition, campaign and channel parameters are visible within the AppsFlyer Dashboard. + */ ++ (void) generateInviteUrlWithLinkGenerator:(AppsFlyerLinkGenerator * (^)(AppsFlyerLinkGenerator *generator))generatorCreator + completionHandler:(void (^)(NSURL * _Nullable url))completionHandler; + +/*! + * It is recommended to generate an in-app event after the invite is sent to track the invites from the senders' perspective. + * This enables you to find the users that tend most to invite friends, and the media sources that get you these users. + */ ++ (void) trackInvite:(nullable NSString *)channel parameters:(nullable NSDictionary *)parameters; + +@end + +NS_ASSUME_NONNULL_END diff --git a/iphone/Maps/3party/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerTracker.h b/iphone/Maps/3party/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerTracker.h new file mode 100644 index 0000000000..215b0184e3 --- /dev/null +++ b/iphone/Maps/3party/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerTracker.h @@ -0,0 +1,352 @@ +// +// AppsFlyerTracker.h +// AppsFlyerLib +// +// AppsFlyer iOS SDK 4.8.0 (597) +// Copyright (c) 2013 AppsFlyer Ltd. All rights reserved. +// + +#import +#import "AppsFlyerCrossPromotionHelper.h" +#import "AppsFlyerShareInviteHelper.h" + + + +// In app event names constants +#define AFEventLevelAchieved @"af_level_achieved" +#define AFEventAddPaymentInfo @"af_add_payment_info" +#define AFEventAddToCart @"af_add_to_cart" +#define AFEventAddToWishlist @"af_add_to_wishlist" +#define AFEventCompleteRegistration @"af_complete_registration" +#define AFEventTutorial_completion @"af_tutorial_completion" +#define AFEventInitiatedCheckout @"af_initiated_checkout" +#define AFEventPurchase @"af_purchase" +#define AFEventRate @"af_rate" +#define AFEventSearch @"af_search" +#define AFEventSpentCredits @"af_spent_credits" +#define AFEventAchievementUnlocked @"af_achievement_unlocked" +#define AFEventContentView @"af_content_view" +#define AFEventListView @"af_list_view" +#define AFEventTravelBooking @"af_travel_booking" +#define AFEventShare @"af_share" +#define AFEventInvite @"af_invite" +#define AFEventLogin @"af_login" +#define AFEventReEngage @"af_re_engage" +#define AFEventUpdate @"af_update" +#define AFEventOpenedFromPushNotification @"af_opened_from_push_notification" +#define AFEventLocation @"af_location_coordinates" +#define AFEventCustomerSegment @"af_customer_segment" + + + +// In app event parameter names +#define AFEventParamAchievenmentId @"af_achievement_id" +#define AFEventParamLevel @"af_level" +#define AFEventParamScore @"af_score" +#define AFEventParamSuccess @"af_success" +#define AFEventParamPrice @"af_price" +#define AFEventParamContentType @"af_content_type" +#define AFEventParamContentId @"af_content_id" +#define AFEventParamContentList @"af_content_list" +#define AFEventParamCurrency @"af_currency" +#define AFEventParamQuantity @"af_quantity" +#define AFEventParamRegistrationMethod @"af_registration_method" +#define AFEventParamPaymentInfoAvailable @"af_payment_info_available" +#define AFEventParamMaxRatingValue @"af_max_rating_value" +#define AFEventParamRatingValue @"af_rating_value" +#define AFEventParamSearchString @"af_search_string" +#define AFEventParamDateA @"af_date_a" +#define AFEventParamDateB @"af_date_b" +#define AFEventParamDestinationA @"af_destination_a" +#define AFEventParamDestinationB @"af_destination_b" +#define AFEventParamDescription @"af_description" +#define AFEventParamClass @"af_class" +#define AFEventParamEventStart @"af_event_start" +#define AFEventParamEventEnd @"af_event_end" +#define AFEventParamLat @"af_lat" +#define AFEventParamLong @"af_long" +#define AFEventParamCustomerUserId @"af_customer_user_id" +#define AFEventParamValidated @"af_validated" +#define AFEventParamRevenue @"af_revenue" +#define AFEventProjectedParamRevenue @"af_projected_revenue" +#define AFEventParamReceiptId @"af_receipt_id" +#define AFEventParamTutorialId @"af_tutorial_id" +#define AFEventParamAchievenmentId @"af_achievement_id" +#define AFEventParamVirtualCurrencyName @"af_virtual_currency_name" +#define AFEventParamDeepLink @"af_deep_link" +#define AFEventParamOldVersion @"af_old_version" +#define AFEventParamNewVersion @"af_new_version" +#define AFEventParamReviewText @"af_review_text" +#define AFEventParamCouponCode @"af_coupon_code" +#define AFEventParamOrderId @"af_order_id" +#define AFEventParam1 @"af_param_1" +#define AFEventParam2 @"af_param_2" +#define AFEventParam3 @"af_param_3" +#define AFEventParam4 @"af_param_4" +#define AFEventParam5 @"af_param_5" +#define AFEventParam6 @"af_param_6" +#define AFEventParam7 @"af_param_7" +#define AFEventParam8 @"af_param_8" +#define AFEventParam9 @"af_param_9" +#define AFEventParam10 @"af_param_10" + +#define AFEventParamDepartingDepartureDate @"af_departing_departure_date" +#define AFEventParamReturningDepartureDate @"af_returning_departure_date" +#define AFEventParamDestinationList @"af_destination_list" //array of string +#define AFEventParamCity @"af_city" +#define AFEventParamRegion @"af_region" +#define AFEventParamCountry @"af_country" + + +#define AFEventParamDepartingArrivalDate @"af_departing_arrival_date" +#define AFEventParamReturningArrivalDate @"af_returning_arrival_date" +#define AFEventParamSuggestedDestinations @"af_suggested_destinations" //array of string +#define AFEventParamTravelStart @"af_travel_start" +#define AFEventParamTravelEnd @"af_travel_end" +#define AFEventParamNumAdults @"af_num_adults" +#define AFEventParamNumChildren @"af_num_children" +#define AFEventParamNumInfants @"af_num_infants" +#define AFEventParamSuggestedHotels @"af_suggested_hotels" //array of string + +#define AFEventParamUserScore @"af_user_score" +#define AFEventParamHotelScore @"af_hotel_score" +#define AFEventParamPurchaseCurrency @"af_purchase_currency" + +#define AFEventParamPreferredStarRatings @"af_preferred_star_ratings" //array of int (basically a tupple (min,max) but we'll use array of int and instruct the developer to use two values) + +#define AFEventParamPreferredPriceRange @"af_preferred_price_range" //array of int (basically a tupple (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 kAppsFlyerOneLinkVersion @"oneLinkVersion" +#define kAppsFlyerOneLinkScheme @"oneLinkScheme" +#define kAppsFlyerOneLinkDomain @"oneLinkDomain" +#define kDefaultOneLink @"go.onelink.me" +#define kNoOneLinkFallback @"https://app.appsflyer.com" +#define kINviteAppleAppID @"af_siteid" + + + + +typedef enum { + EmailCryptTypeNone = 0, + EmailCryptTypeSHA1 = 1, + EmailCryptTypeMD5 = 2, + EmailCryptTypeSHA256 = 3 +} EmailCryptType; + +/* + * This delegate should be use if you want to use AppsFlyer conversion data. See AppsFlyer iOS + */ +@protocol AppsFlyerTrackerDelegate + +@optional +- (void) onConversionDataReceived:(NSDictionary*) installData; +- (void) onConversionDataRequestFailure:(NSError *)error; +- (void) onAppOpenAttribution:(NSDictionary*) attributionData; +- (void) onAppOpenAttributionFailure:(NSError *)error; + +@end + +@interface AppsFlyerTracker : NSObject { + + BOOL _isDebug; + BOOL permitAggregateiAdData; + BOOL _useReceiptValidationSandbox; + BOOL _useUninstallSandbox; + EmailCryptType emailCryptType; + NSArray *userEmails; +} + ++(AppsFlyerTracker*) sharedTracker; + +/* In case you use your own user ID in your app, you can set this property to that ID. */ +@property (nonatomic, strong, setter=setCustomerUserID:) NSString *customerUserID; + + +/* In case you use Custom data and you want to receive it in the raw reports.*/ +@property (nonatomic, strong, setter=setAdditionalData:) NSDictionary *customData; + +/* Use this property to set your AppsFlyer's dev key. */ +@property (nonatomic, strong, setter=setAppsFlyerDevKey:) NSString *appsFlyerDevKey; + +/* Use this property to set your app's Apple ID (taken from the app's page on iTunes Connect) */ +@property (nonatomic, strong, setter=setAppleAppID:) NSString *appleAppID; + +/* + * In case of in app purchase events, you can set the currency code your user has purchased with. + * The currency code is a 3 letter code according to ISO standards. Example: "USD" + */ +@property (nonatomic, strong) NSString *currencyCode; + + +/* AppsFlyer's SDK send the data to AppsFlyer's servers over HTTPS. You can set the isHTTPS property to NO in order to use regular HTTP. */ +//@property BOOL isHTTPS; + +/* + * AppsFLyer SDK collect Apple's advertisingIdentifier if the AdSupport framework included in the SDK. + * You can disable this behavior by setting the following property to YES. + */ +@property BOOL disableAppleAdSupportTracking; + +/* + * Prints our messages to the log. This property should only be used in DEBUG mode. The default value + * is NO. + */ +@property (nonatomic, setter = setIsDebug:) BOOL isDebug; + + +/* + * Set this flag to NO, to not collect the device name. + */ +@property (nonatomic, setter = setShouldCollectDeviceName:) BOOL shouldCollectDeviceName; + + +@property (nonatomic, setter = setAppInviteOneLink:) NSString* appInviteOneLinkID; + +/* + * Opt-out tracking for specific user + */ +@property BOOL deviceTrackingDisabled; + +/* + * Opt-out tracking for iAd attributions + */ +@property BOOL disableIAdTracking; + +/* + * AppsFlyer delegate. See AppsFlyerTrackerDelegate abvoe + */ +@property (weak, nonatomic) id delegate; + +/* + * In app purchase receipt validation Apple environment (production or sandbox). The default value + * is NO. + */ +@property (nonatomic, setter = setUseReceiptValidationSandbox:) BOOL useReceiptValidationSandbox; + + +/* + * Set this flag to test uninstall on Apple environment (production or sandbox). The default value + * is NO. + */ +@property (nonatomic, setter = setUseUninstallSandbox:) BOOL useUninstallSandbox; + +/* + * Advertising Id (exposed for RemoteDebug) + */ +@property (nonatomic, strong) NSString *advertiserId; + +/* + * Use this to send the User's emails + */ +-(void) setUserEmails:(NSArray *) userEmails withCryptType:(EmailCryptType) type; + + +/* Track application launch*/ +- (void) trackAppLaunch; + +/* + * Use this method to track events in your app like purchases or user actions. + * Example : + * [[AppsFlyer sharedTracker] trackEvent:@"hotel-booked" withValue:"200"]; + */ +- (void) trackEvent:(NSString*)eventName withValue:(NSString*)value __attribute__((deprecated)); + +/* + * Use this method to track an events with mulitple values. See AppsFlyer's documentation for details. + * + */ +- (void) trackEvent:(NSString *)eventName withValues:(NSDictionary*)values; + +/* + * To track in app purchases you can call this method from the completeTransaction: method on + * your SKPaymentTransactionObserver. + */ +- (void) validateAndTrackInAppPurchase:(NSString *)productIdentifier + price:(NSString *)price + currency:(NSString *)currency + transactionId:(NSString *) tranactionId + additionalParameters:(NSDictionary *)params + success:(void (^)(NSDictionary *response))successBlock + failure:(void (^)(NSError *error, id reponse)) failedBlock NS_AVAILABLE(10_7, 7_0); + + + +/* +* To Track location for geo-fencing. +*/ +- (void) trackLocation:(double) longitude latitude:(double) latitude; + +/* + * This method returns AppsFLyer's internal user ID (unique for your app) + */ +- (NSString *) getAppsFlyerUID; + +/* + * In case you want to use AppsFlyer tracking data in your app you can use the following method set a + * delegate with callback buttons for the tracking data. See AppsFlyerTrackerDelegate above. + */ +- (void) loadConversionDataWithDelegate:(id) delegate __attribute__((deprecated)); + +/* + * In case you want to track deep linking, call this method from your delegate's openURL method. + */ +- (void) handleOpenURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication __attribute__((deprecated)); + +/* + * In case you want to track deep linking, call this method from your delegate's openURL method with refferer. + */ +- (void) handleOpenURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication withAnnotation:(id) annotation __attribute__((deprecated)); + + +- (void) handleOpenUrl:(NSURL *) url options:(NSDictionary *)options; +/* + * For Universal links iOS 9 + */ + +- (BOOL) continueUserActivity:(NSUserActivity *) userActivity restorationHandler:(void (^)(NSArray *))restorationHandler NS_AVAILABLE_IOS(9_0); +- (void) didUpdateUserActivity:(NSUserActivity *)userActivity NS_AVAILABLE_IOS(9_0); +- (void) handlePushNotification:(NSDictionary *) pushPayload; + + +/* + Register uninstall - you should register for remote notification and provide Appsflyer the push device token. +*/ +- (void) registerUninstall:(NSData *) deviceToken; + +/* + Get SDK version. +*/ +- (NSString *) getSDKVersion; + + + +- (void) remoteDebuggingCallWithData:(NSString *) data; + +//- (void) crossPromotionViewed:(NSString*) appID campaign:(NSString*) campaign; +//- (void) openAppStoreForAppID:(NSString*) appID campaign:(NSString*) +//campaign paramters:(NSDictionary*) parameters +// viewController: (UIViewController*) viewController; + +/*! + * @brief This property accepts a string value representing the host name for all enpoints. + * @warning To use `default` SDK endpoint – set value to `nil`. + * @code + * Objective-C: + * [[AppsFlyerTracker sharedTracker] setHost:@"example.com"]; + * Swift: + * AppsFlyerTracker.shared().host = "example.com" + * @endcode + */ + +@property (nonatomic, strong) NSString *host; + +/*! + * This property is responsible for timeout between sessions in seconds. + * Default value is 5 seconds. + */ +@property (atomic) NSUInteger minTimeBetweenSessions; + +@end diff --git a/iphone/Maps/3party/AppsFlyerLib.framework/Versions/Current b/iphone/Maps/3party/AppsFlyerLib.framework/Versions/Current new file mode 120000 index 0000000000..8c7e5a667f --- /dev/null +++ b/iphone/Maps/3party/AppsFlyerLib.framework/Versions/Current @@ -0,0 +1 @@ +A \ No newline at end of file diff --git a/iphone/Maps/Classes/MapsAppDelegate.mm b/iphone/Maps/Classes/MapsAppDelegate.mm index 4ee3114c0b..02f8e9c7a2 100644 --- a/iphone/Maps/Classes/MapsAppDelegate.mm +++ b/iphone/Maps/Classes/MapsAppDelegate.mm @@ -34,6 +34,7 @@ #import #import +#import #endif @@ -124,6 +125,26 @@ void OverrideUserAgent() @"(KHTML, like Gecko) Version/10.0 Mobile/14E269 Safari/602.1" }]; } + +void InitMarketingTrackers() +{ +#ifdef OMIM_PRODUCTION + NSString * appsFlyerDevKey = @(APPSFLYER_KEY); + NSString * appsFlyerAppIdKey = @(APPSFLYER_APP_ID_IOS); + if (appsFlyerDevKey.length != 0 && appsFlyerAppIdKey.length != 0) + { + [AppsFlyerTracker sharedTracker].appsFlyerDevKey = appsFlyerDevKey; + [AppsFlyerTracker sharedTracker].appleAppID = appsFlyerAppIdKey; + } +#endif +} + +void TrackMarketingAppLaunch() +{ +#ifdef OMIM_PRODUCTION + [[AppsFlyerTracker sharedTracker] trackAppLaunch]; +#endif +} } // namespace using namespace osm_auth_ios; @@ -331,6 +352,8 @@ using namespace osm_auth_ios; OverrideUserAgent(); InitCrashTrackers(); + + InitMarketingTrackers(); // Initialize all 3party engines. BOOL returnValue = [self initStatistics:application didFinishLaunchingWithOptions:launchOptions]; @@ -629,6 +652,9 @@ using namespace osm_auth_ios; { LOG(LINFO, ("applicationDidBecomeActive - begin")); NSLog(@"Pushwoosh token: %@", [MWMPushNotifications pushToken]); + + TrackMarketingAppLaunch(); + auto & f = GetFramework(); f.EnterForeground(); [self.mapViewController onGetFocus:YES]; diff --git a/iphone/Maps/Maps.xcodeproj/project.pbxproj b/iphone/Maps/Maps.xcodeproj/project.pbxproj index ed876ecc3f..e0db16f002 100644 --- a/iphone/Maps/Maps.xcodeproj/project.pbxproj +++ b/iphone/Maps/Maps.xcodeproj/project.pbxproj @@ -769,6 +769,9 @@ 4554B6ED1E55F0F00084017F /* drules_proto_vehicle_clear.bin in Resources */ = {isa = PBXBuildFile; fileRef = 4554B6E81E55F02B0084017F /* drules_proto_vehicle_clear.bin */; }; 4554B6EE1E55F0F30084017F /* drules_proto_vehicle_dark.bin in Resources */ = {isa = PBXBuildFile; fileRef = 4554B6E91E55F02B0084017F /* drules_proto_vehicle_dark.bin */; }; 4554B6EF1E55F0F40084017F /* drules_proto_vehicle_dark.bin in Resources */ = {isa = PBXBuildFile; fileRef = 4554B6E91E55F02B0084017F /* drules_proto_vehicle_dark.bin */; }; + 456E1B1D1F94D6DC009C32E1 /* AppsFlyerLib.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 456E1B1C1F94D6DB009C32E1 /* AppsFlyerLib.framework */; }; + 456E1B1E1F94D704009C32E1 /* AppsFlyerLib.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 456E1B1C1F94D6DB009C32E1 /* AppsFlyerLib.framework */; }; + 456E1B1F1F94D718009C32E1 /* AppsFlyerLib.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 456E1B1C1F94D6DB009C32E1 /* AppsFlyerLib.framework */; }; 4586D0C41F48121A00DF9CE5 /* libbsdiff.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4586D0C31F48121A00DF9CE5 /* libbsdiff.a */; }; 4586D0E71F4813AB00DF9CE5 /* libmwm_diff.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4586D0E61F4813AB00DF9CE5 /* libmwm_diff.a */; }; 45FFD65D1E965EBE00DB854E /* liblocal_ads.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 45FFD65C1E965EBE00DB854E /* liblocal_ads.a */; }; @@ -2278,6 +2281,7 @@ 452FCA3A1B6A3DF7007019AB /* colors.txt */ = {isa = PBXFileReference; lastKnownFileType = text; name = colors.txt; path = ../../data/colors.txt; sourceTree = ""; }; 4554B6E81E55F02B0084017F /* drules_proto_vehicle_clear.bin */ = {isa = PBXFileReference; lastKnownFileType = archive.macbinary; name = drules_proto_vehicle_clear.bin; path = ../../data/drules_proto_vehicle_clear.bin; sourceTree = ""; }; 4554B6E91E55F02B0084017F /* drules_proto_vehicle_dark.bin */ = {isa = PBXFileReference; lastKnownFileType = archive.macbinary; name = drules_proto_vehicle_dark.bin; path = ../../data/drules_proto_vehicle_dark.bin; sourceTree = ""; }; + 456E1B1C1F94D6DB009C32E1 /* AppsFlyerLib.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppsFlyerLib.framework; path = 3party/AppsFlyerLib.framework; sourceTree = ""; }; 458287C21AD3BE2000BA8940 /* DownloadIndicatorProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DownloadIndicatorProtocol.h; sourceTree = ""; }; 4586D0C31F48121A00DF9CE5 /* libbsdiff.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libbsdiff.a; path = ../../xcode/bsdiff/build/Debug/libbsdiff.a; sourceTree = ""; }; 4586D0E61F4813AB00DF9CE5 /* libmwm_diff.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libmwm_diff.a; path = ../../xcode/mwm_diff/build/Debug/libmwm_diff.a; sourceTree = ""; }; @@ -2744,6 +2748,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 456E1B1D1F94D6DC009C32E1 /* AppsFlyerLib.framework in Frameworks */, F68BDF051EEA9A830009BB81 /* MyTargetSDK.framework in Frameworks */, 341CF15E1E9E2AA9009AC928 /* libMopub.a in Frameworks */, 3411E7631F7CE5DD00A49FCD /* GoogleMobileAds.framework in Frameworks */, @@ -2779,6 +2784,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 456E1B1E1F94D704009C32E1 /* AppsFlyerLib.framework in Frameworks */, 345E8F4E1F83984500A826CC /* GoogleSignIn.framework in Frameworks */, 345E8F4F1F83984500A826CC /* GoogleSignInDependencies.framework in Frameworks */, 4586D0E71F4813AB00DF9CE5 /* libmwm_diff.a in Frameworks */, @@ -2850,6 +2856,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 456E1B1F1F94D718009C32E1 /* AppsFlyerLib.framework in Frameworks */, F68BDF071EEA9A830009BB81 /* MyTargetSDK.framework in Frameworks */, 341CF15F1E9E2ADC009AC928 /* libMopub.a in Frameworks */, 3411E7651F7CE5E000A49FCD /* GoogleMobileAds.framework in Frameworks */, @@ -2973,6 +2980,7 @@ 29B97323FDCFA39411CA2CEA /* Frameworks */ = { isa = PBXGroup; children = ( + 456E1B1C1F94D6DB009C32E1 /* AppsFlyerLib.framework */, 4586D0E61F4813AB00DF9CE5 /* libmwm_diff.a */, 4586D0C31F48121A00DF9CE5 /* libbsdiff.a */, F6F8E3C41EF8469700F2DE8F /* libugc.a */,