forked from organicmaps/organicmaps
[ios] download on map banners are added
This commit is contained in:
parent
d14e242f72
commit
72827d5bbb
26 changed files with 2156 additions and 129 deletions
|
@ -4,7 +4,12 @@ typedef NS_ENUM(NSInteger, MWMBannerType) {
|
|||
MWMBannerTypeNone,
|
||||
MWMBannerTypeFacebook,
|
||||
MWMBannerTypeRb,
|
||||
MWMBannerTypeMopub
|
||||
MWMBannerTypeMopub,
|
||||
MWMBannerTypeTinkoffAllAirlines,
|
||||
MWMBannerTypeTinkoffInsurance,
|
||||
MWMBannerTypeMts,
|
||||
MWMBannerTypeSkyeng,
|
||||
MWMBannerTypeBookmarkCatalog,
|
||||
};
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
|
|
@ -10,6 +10,16 @@ static MWMBannerType ConvertBannerType(ads::Banner::Type coreType) {
|
|||
return MWMBannerTypeRb;
|
||||
case ads::Banner::Type::Mopub:
|
||||
return MWMBannerTypeMopub;
|
||||
case ads::Banner::Type::TinkoffAllAirlines:
|
||||
return MWMBannerTypeTinkoffAllAirlines;
|
||||
case ads::Banner::Type::TinkoffInsurance:
|
||||
return MWMBannerTypeTinkoffInsurance;
|
||||
case ads::Banner::Type::Mts:
|
||||
return MWMBannerTypeMts;
|
||||
case ads::Banner::Type::Skyeng:
|
||||
return MWMBannerTypeSkyeng;
|
||||
case ads::Banner::Type::BookmarkCatalog:
|
||||
return MWMBannerTypeBookmarkCatalog;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -87,3 +87,4 @@
|
|||
#import "DeepLinkRouteStrategyAdapter.h"
|
||||
#import "MWMMapViewControlsManager.h"
|
||||
#import "SwizzleStyle.h"
|
||||
#import "MWMDownloadBannerViewController.h"
|
||||
|
|
|
@ -469,7 +469,7 @@ NSString * const kPP2BookmarkEditingSegue = @"PP2BookmarkEditing";
|
|||
withParameters:@{
|
||||
kStatIsAuthenticated: @(AuthorizationHaveCredentials()),
|
||||
kStatIsOnline: Platform::IsConnected() ? kStatYes : kStatNo,
|
||||
kStatEditorMWMName: @(featureID.GetMwmName().c_str()),
|
||||
kStatMWMName: @(featureID.GetMwmName().c_str()),
|
||||
kStatEditorMWMVersion: @(featureID.GetMwmVersion())
|
||||
}];
|
||||
[self performSegueWithIdentifier:kEditorSegue sender:self.controlsManager.featureHolder];
|
||||
|
|
|
@ -35,9 +35,9 @@
|
|||
#include "map/framework_light.hpp"
|
||||
#include "map/gps_tracker.hpp"
|
||||
|
||||
#include "partners_api/ads/mopub_ads.hpp"
|
||||
#include "platform/http_thread_apple.h"
|
||||
#include "platform/local_country_file_utils.hpp"
|
||||
#include "partners_api/mopub_ads.hpp"
|
||||
|
||||
#include "base/assert.hpp"
|
||||
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
#import "MWMMapDownloadDialog.h"
|
||||
#import <SafariServices/SafariServices.h>
|
||||
#import "CLLocation+Mercator.h"
|
||||
#import "MWMBannerHelpers.h"
|
||||
#import "MWMBookmarksBannerViewController.h"
|
||||
#import "MWMCircularProgress.h"
|
||||
#import "MWMMegafonBannerViewController.h"
|
||||
#import "MWMStorage+UI.h"
|
||||
#import "MapViewController.h"
|
||||
#import "Statistics.h"
|
||||
|
@ -11,7 +11,8 @@
|
|||
|
||||
#include <CoreApi/Framework.h>
|
||||
|
||||
#include "partners_api/downloader_promo.hpp"
|
||||
#include "partners_api/ads/ads_engine.hpp"
|
||||
#include "partners_api/ads/banner.hpp"
|
||||
|
||||
#include "storage/country_info_getter.hpp"
|
||||
|
||||
|
@ -39,16 +40,17 @@ BOOL canAutoDownload(storage::CountryId const &countryId) {
|
|||
return YES;
|
||||
}
|
||||
|
||||
promo::DownloaderPromo::Banner getPromoBanner(std::string const &mwmId) {
|
||||
auto const &purchase = GetFramework().GetPurchase();
|
||||
bool const hasRemoveAdsSubscription = purchase && purchase->IsSubscriptionActive(SubscriptionType::RemoveAds);
|
||||
auto const policy = platform::GetCurrentNetworkPolicy();
|
||||
if (!policy.CanUse())
|
||||
ads::Banner getPromoBanner(std::string const &mwmId) {
|
||||
std::vector<ads::Banner> banners;
|
||||
auto const pos = GetFramework().GetCurrentPosition();
|
||||
if (pos) {
|
||||
banners = GetFramework().GetAdsEngine().GetDownloadOnMapBanners(mwmId, *pos, languages::GetCurrentNorm());
|
||||
}
|
||||
|
||||
if (banners.empty())
|
||||
return {};
|
||||
auto const *promoApi = GetFramework().GetPromoApi(policy);
|
||||
CHECK(promoApi != nullptr, ());
|
||||
return promo::DownloaderPromo::GetBanner(GetFramework().GetStorage(), *promoApi, mwmId, languages::GetCurrentNorm(),
|
||||
hasRemoveAdsSubscription);
|
||||
|
||||
return banners[0];
|
||||
}
|
||||
} // namespace
|
||||
|
||||
|
@ -77,7 +79,7 @@ using namespace storage;
|
|||
@implementation MWMMapDownloadDialog {
|
||||
CountryId m_countryId;
|
||||
CountryId m_autoDownloadCountryId;
|
||||
promo::DownloaderPromo::Banner m_promoBanner;
|
||||
ads::Banner m_promoBanner;
|
||||
}
|
||||
|
||||
+ (instancetype)dialogForController:(MapViewController *)controller {
|
||||
|
@ -278,13 +280,41 @@ using namespace storage;
|
|||
m_promoBanner = getPromoBanner(m_countryId);
|
||||
[self layoutIfNeeded];
|
||||
if (self.bannerView.hidden) {
|
||||
NSString *statProvider;
|
||||
switch (m_promoBanner.m_type) {
|
||||
case promo::DownloaderPromo::Type::Megafon:
|
||||
case promo::DownloaderPromo::Type::BookmarkCatalog: {
|
||||
case ads::Banner::Type::TinkoffAllAirlines:
|
||||
statProvider = kStatTinkoffAirlines;
|
||||
case ads::Banner::Type::TinkoffInsurance:
|
||||
statProvider = kStatTinkoffInsurance;
|
||||
case ads::Banner::Type::Mts:
|
||||
statProvider = kStatMts;
|
||||
case ads::Banner::Type::Skyeng: {
|
||||
statProvider = kStatSkyeng;
|
||||
__weak __typeof(self) ws = self;
|
||||
PartnerBannerViewController *controller = [[PartnerBannerViewController alloc] initWithTapHandler:^{
|
||||
[ws bannerAction];
|
||||
[Statistics logEvent:kStatDownloaderBannerClick
|
||||
withParameters:@{
|
||||
kStatFrom: kStatMap,
|
||||
kStatProvider: statProvider,
|
||||
kStatMWMName: @(self->m_countryId.c_str())
|
||||
}];
|
||||
}];
|
||||
[Statistics logEvent:kStatDownloaderBannerShow
|
||||
withParameters:@{
|
||||
kStatFrom: kStatMap,
|
||||
kStatProvider: statProvider,
|
||||
kStatMWMName: @(self->m_countryId.c_str())
|
||||
}];
|
||||
[controller configWithType:banner_helpers::MatchBannerType(m_promoBanner.m_type)];
|
||||
self.bannerViewController = controller;
|
||||
break;
|
||||
}
|
||||
case ads::Banner::Type::BookmarkCatalog: {
|
||||
__weak __typeof(self) ws = self;
|
||||
self.bannerViewController = [[MWMBookmarksBannerViewController alloc] initWithTapHandler:^{
|
||||
__strong __typeof(self) self = ws;
|
||||
NSString *urlString = @(self->m_promoBanner.m_url.c_str());
|
||||
NSString *urlString = @(self->m_promoBanner.m_value.c_str());
|
||||
if (urlString.length == 0) {
|
||||
return;
|
||||
}
|
||||
|
@ -303,7 +333,7 @@ using namespace storage;
|
|||
}];
|
||||
break;
|
||||
}
|
||||
case promo::DownloaderPromo::Type::NoPromo:
|
||||
default:
|
||||
self.bannerViewController = nil;
|
||||
break;
|
||||
}
|
||||
|
@ -401,10 +431,10 @@ using namespace storage;
|
|||
#pragma mark - Actions
|
||||
|
||||
- (IBAction)bannerAction {
|
||||
if (m_promoBanner.m_url.empty())
|
||||
if (m_promoBanner.m_value.empty())
|
||||
return;
|
||||
|
||||
NSURL *bannerURL = [NSURL URLWithString:@(m_promoBanner.m_url.c_str())];
|
||||
NSURL *bannerURL = [NSURL URLWithString:@(m_promoBanner.m_value.c_str())];
|
||||
SFSafariViewController *safari = [[SFSafariViewController alloc] initWithURL:bannerURL];
|
||||
[self.controller presentViewController:safari animated:YES completion:nil];
|
||||
}
|
||||
|
|
|
@ -1,9 +0,0 @@
|
|||
#import "MWMDownloadBannerViewController.h"
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@interface MWMMegafonBannerViewController : MWMDownloadBannerViewController
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
|
@ -1,5 +0,0 @@
|
|||
#import "MWMMegafonBannerViewController.h"
|
||||
|
||||
@implementation MWMMegafonBannerViewController
|
||||
|
||||
@end
|
|
@ -0,0 +1,71 @@
|
|||
@objc
|
||||
final class PartnerBannerViewController: MWMDownloadBannerViewController {
|
||||
|
||||
@IBOutlet weak var icon: UIImageView!
|
||||
@IBOutlet weak var message: UILabel!
|
||||
@IBOutlet weak var button: UIButton!
|
||||
|
||||
var bannerType: MWMBannerType = .none
|
||||
|
||||
@objc func config(type: MWMBannerType) {
|
||||
bannerType = type
|
||||
}
|
||||
|
||||
override func viewDidLoad() {
|
||||
let iconImage = { () -> UIImage in
|
||||
switch self.bannerType {
|
||||
case .tinkoffAllAirlines: return #imageLiteral(resourceName: "ic_logo_tinkoff")
|
||||
case .tinkoffInsurance: return #imageLiteral(resourceName: "ic_logo_tinkoff")
|
||||
case .mts: return #imageLiteral(resourceName: "ic_logo_mts")
|
||||
case .skyeng: return #imageLiteral(resourceName: "ic_logo_skyeng")
|
||||
default: fatalError()
|
||||
}
|
||||
}
|
||||
|
||||
let messageString = { () -> String in
|
||||
switch self.bannerType {
|
||||
case .tinkoffAllAirlines: return L("tinkoff_allairlines_map_downloader_title")
|
||||
case .tinkoffInsurance: return L("tinkoff_insurance_map_downloader_title")
|
||||
case .mts: return L("mts_map_downloader_title")
|
||||
case .skyeng: return L("skyeng_map_downloader_title")
|
||||
default: fatalError()
|
||||
}
|
||||
}
|
||||
|
||||
let buttonString = { () -> String in
|
||||
switch self.bannerType {
|
||||
case .tinkoffAllAirlines: return L("tinkoff_allairlines_map_downloader_cta_button")
|
||||
case .tinkoffInsurance: return L("tinkoff_insurance_map_downloader_cta_button")
|
||||
case .mts: return L("mts_map_downloader_cta_button")
|
||||
case .skyeng: return L("skyeng_map_downloader_cta_button")
|
||||
default: fatalError()
|
||||
}
|
||||
}
|
||||
|
||||
let buttonBackgroundColor = { () -> UIColor in
|
||||
switch self.bannerType {
|
||||
case .tinkoffAllAirlines: return UIColor.init(fromHexString: "FFDD2D")
|
||||
case .tinkoffInsurance: return UIColor.init(fromHexString: "FFDD2D")
|
||||
case .mts: return UIColor.init(fromHexString: "E30611")
|
||||
case .skyeng: return UIColor.init(fromHexString: "4287DF")
|
||||
default: fatalError()
|
||||
}
|
||||
}
|
||||
|
||||
let buttonTextColor = { () -> UIColor in
|
||||
switch self.bannerType {
|
||||
case .tinkoffAllAirlines: return .black
|
||||
case .tinkoffInsurance: return .black
|
||||
case .mts: return .white
|
||||
case .skyeng: return .white
|
||||
default: fatalError()
|
||||
}
|
||||
}
|
||||
|
||||
icon.image = iconImage()
|
||||
message.text = messageString()
|
||||
button.localizedText = buttonString()
|
||||
button.backgroundColor = buttonBackgroundColor()
|
||||
button.titleLabel?.textColor = buttonTextColor()
|
||||
}
|
||||
}
|
|
@ -1,15 +1,18 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="15702" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
|
||||
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="15705" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
|
||||
<device id="retina4_0" orientation="landscape" appearance="light"/>
|
||||
<dependencies>
|
||||
<deployment identifier="iOS"/>
|
||||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="15704"/>
|
||||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="15706"/>
|
||||
<capability name="Safe area layout guides" minToolsVersion="9.0"/>
|
||||
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
||||
</dependencies>
|
||||
<objects>
|
||||
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="MWMMegafonBannerViewController">
|
||||
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="PartnerBannerViewController">
|
||||
<connections>
|
||||
<outlet property="button" destination="pol-d8-Kul" id="4rG-Ol-NN4"/>
|
||||
<outlet property="icon" destination="LUI-uL-qXa" id="bbt-zG-hf0"/>
|
||||
<outlet property="message" destination="lnc-Lj-kiV" id="6RM-vE-rBf"/>
|
||||
<outlet property="view" destination="i5M-Pr-FkT" id="sfx-zR-JGt"/>
|
||||
</connections>
|
||||
</placeholder>
|
||||
|
@ -18,20 +21,19 @@
|
|||
<rect key="frame" x="0.0" y="0.0" width="200" height="103"/>
|
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
||||
<subviews>
|
||||
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" horizontalCompressionResistancePriority="751" image="ic_brand_megafon_green" translatesAutoresizingMaskIntoConstraints="NO" id="LUI-uL-qXa">
|
||||
<rect key="frame" x="16" y="19.5" width="24" height="24"/>
|
||||
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" horizontalCompressionResistancePriority="751" translatesAutoresizingMaskIntoConstraints="NO" id="LUI-uL-qXa" userLabel="Icon">
|
||||
<rect key="frame" x="16" y="19.5" width="9.5" height="24"/>
|
||||
</imageView>
|
||||
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" verticalHuggingPriority="251" text="Скажи международному роумингу гудбай!" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="lnc-Lj-kiV">
|
||||
<rect key="frame" x="48" y="10" width="136" height="43"/>
|
||||
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" verticalHuggingPriority="251" text="Скажи международному роумингу гудбай!" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="lnc-Lj-kiV" userLabel="Message">
|
||||
<rect key="frame" x="33.5" y="10" width="150.5" height="43"/>
|
||||
<fontDescription key="fontDescription" type="system" pointSize="12"/>
|
||||
<color key="textColor" white="0.0" alpha="0.87165560789999996" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
||||
<nil key="highlightedColor"/>
|
||||
<userDefinedRuntimeAttributes>
|
||||
<userDefinedRuntimeAttribute type="string" keyPath="localizedText" value="banner_megafon_banner_message"/>
|
||||
<userDefinedRuntimeAttribute type="string" keyPath="styleName" value="blackPrimaryText"/>
|
||||
</userDefinedRuntimeAttributes>
|
||||
</label>
|
||||
<button opaque="NO" contentMode="scaleToFill" verticalCompressionResistancePriority="751" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="pol-d8-Kul">
|
||||
<button opaque="NO" contentMode="scaleToFill" verticalCompressionResistancePriority="751" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="pol-d8-Kul" userLabel="Button">
|
||||
<rect key="frame" x="16" y="65" width="168" height="28"/>
|
||||
<color key="backgroundColor" red="0.34136284719999999" green="0.10091145830000001" blue="0.55075412329999995" alpha="1" colorSpace="calibratedRGB"/>
|
||||
<constraints>
|
||||
|
@ -47,7 +49,6 @@
|
|||
<integer key="value" value="14"/>
|
||||
</userDefinedRuntimeAttribute>
|
||||
<userDefinedRuntimeAttribute type="boolean" keyPath="clipsToBounds" value="YES"/>
|
||||
<userDefinedRuntimeAttribute type="string" keyPath="localizedText" value="banner_megafon_banner_button"/>
|
||||
</userDefinedRuntimeAttributes>
|
||||
<variation key="default">
|
||||
<mask key="constraints">
|
||||
|
@ -60,7 +61,7 @@
|
|||
</mask>
|
||||
</variation>
|
||||
<connections>
|
||||
<action selector="onButtonTap:" destination="-1" eventType="touchUpInside" id="C3W-Yk-ooB"/>
|
||||
<action selector="onButtonTap:" destination="-1" eventType="touchUpInside" id="e8S-SA-UoO"/>
|
||||
</connections>
|
||||
</button>
|
||||
</subviews>
|
||||
|
@ -71,6 +72,7 @@
|
|||
<constraint firstItem="pol-d8-Kul" firstAttribute="top" secondItem="lnc-Lj-kiV" secondAttribute="bottom" constant="12" id="KeN-qf-VmB"/>
|
||||
<constraint firstItem="lnc-Lj-kiV" firstAttribute="top" secondItem="i5M-Pr-FkT" secondAttribute="top" constant="10" id="NtB-3i-Yil"/>
|
||||
<constraint firstItem="LUI-uL-qXa" firstAttribute="centerY" secondItem="lnc-Lj-kiV" secondAttribute="centerY" id="SDm-lH-kkw"/>
|
||||
<constraint firstItem="LUI-uL-qXa" firstAttribute="top" secondItem="fnl-2z-Ty3" secondAttribute="top" constant="19.5" id="ToA-UO-ebo"/>
|
||||
<constraint firstAttribute="trailing" secondItem="lnc-Lj-kiV" secondAttribute="trailing" constant="16" id="VHQ-vi-3kA"/>
|
||||
<constraint firstAttribute="bottom" secondItem="pol-d8-Kul" secondAttribute="bottom" constant="10" id="gLK-GX-h2s"/>
|
||||
<constraint firstAttribute="trailing" secondItem="pol-d8-Kul" secondAttribute="trailing" constant="16" id="rpZ-kT-rIj"/>
|
||||
|
@ -81,7 +83,4 @@
|
|||
<point key="canvasLocation" x="28.985507246376812" y="68.638392857142847"/>
|
||||
</view>
|
||||
</objects>
|
||||
<resources>
|
||||
<image name="ic_brand_megafon_green" width="24" height="24"/>
|
||||
</resources>
|
||||
</document>
|
|
@ -175,7 +175,7 @@ static NSString * const kStatEditorEditCancel = @"Editor_Edit_cancel";
|
|||
static NSString * const kStatEditorEditError = @"Editor_Edit_error";
|
||||
static NSString * const kStatEditorEditStart = @"Editor_Edit_start";
|
||||
static NSString * const kStatEditorEditSuccess = @"Editor_Edit_success";
|
||||
static NSString * const kStatEditorMWMName = @"mwm_name";
|
||||
static NSString * const kStatMWMName = @"mwm_name";
|
||||
static NSString * const kStatEditorMWMVersion = @"mwm_version";
|
||||
static NSString * const kStatEditorProblemReport = @"Editor_Problem_report";
|
||||
static NSString * const kStatEditorRegRequest = @"Editor_Reg_request";
|
||||
|
@ -267,7 +267,10 @@ static NSString * const kStatMapsmeInAppSuggestionClicked = @"MapsMe_InAppSugges
|
|||
static NSString * const kStatMapsmeInAppSuggestionClosed = @"MapsMe_InAppSuggestion_closed";
|
||||
static NSString * const kStatMapsmeInAppSuggestionShown = @"MapsMe_InAppSuggestion_shown";
|
||||
static NSString * const kStatMaxim = @"Maxim";
|
||||
static NSString * const kStatMegafon = @"Megafon";
|
||||
static NSString * const kStatTinkoffAirlines = @"Tinkoff_AllAirlines";
|
||||
static NSString * const kStatTinkoffInsurance = @"Tinkoff_Insurance";
|
||||
static NSString * const kStatMts = @"MTS";
|
||||
static NSString * const kStatSkyeng= @"Skyeng";
|
||||
static NSString * const kStatMenu = @"menu";
|
||||
static NSString * const kStatMethod = @"method";
|
||||
static NSString * const kStatMiles = @"Miles";
|
||||
|
|
|
@ -24,10 +24,10 @@ enum BannerType {
|
|||
|
||||
init(type: MWMBannerType, id: String, query: String = "") {
|
||||
switch type {
|
||||
case .none: self = .none
|
||||
case .facebook: self = .facebook(id)
|
||||
case .rb: self = .rb(id)
|
||||
case .mopub: self = .mopub(id)
|
||||
default: self = .none
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#import <CoreApi/CoreBanner.h>
|
||||
|
||||
#include "partners_api/banner.hpp"
|
||||
#include "partners_api/ads/banner.hpp"
|
||||
|
||||
#include <vector>
|
||||
|
||||
|
@ -14,6 +14,11 @@ static inline MWMBannerType MatchBannerType(ads::Banner::Type coreType)
|
|||
case ads::Banner::Type::Facebook: return MWMBannerTypeFacebook;
|
||||
case ads::Banner::Type::RB: return MWMBannerTypeRb;
|
||||
case ads::Banner::Type::Mopub: return MWMBannerTypeMopub;
|
||||
case ads::Banner::Type::TinkoffAllAirlines: return MWMBannerTypeTinkoffAllAirlines;
|
||||
case ads::Banner::Type::TinkoffInsurance: return MWMBannerTypeTinkoffInsurance;
|
||||
case ads::Banner::Type::Mts: return MWMBannerTypeMts;
|
||||
case ads::Banner::Type::Skyeng: return MWMBannerTypeSkyeng;
|
||||
case ads::Banner::Type::BookmarkCatalog: return MWMBannerTypeBookmarkCatalog;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
#include <CoreApi/Framework.h>
|
||||
|
||||
#include "partners_api/ads_engine.hpp"
|
||||
#include "partners_api/ads/ads_engine.hpp"
|
||||
#include "platform/network_policy.hpp"
|
||||
|
||||
namespace
|
||||
|
|
Binary file not shown.
|
@ -2,7 +2,7 @@
|
|||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "ic_24px_megafon.pdf"
|
||||
"filename" : "ic_logo_mts.pdf"
|
||||
}
|
||||
],
|
||||
"info" : {
|
84
iphone/Maps/Images.xcassets/ic_logo_mts.imageset/ic_logo_mts.pdf
vendored
Normal file
84
iphone/Maps/Images.xcassets/ic_logo_mts.imageset/ic_logo_mts.pdf
vendored
Normal file
|
@ -0,0 +1,84 @@
|
|||
%PDF-1.7
|
||||
|
||||
1 0 obj
|
||||
<< >>
|
||||
endobj
|
||||
|
||||
2 0 obj
|
||||
<< /Length 3 0 R >>
|
||||
stream
|
||||
/DeviceRGB CS
|
||||
/DeviceRGB cs
|
||||
q
|
||||
1.000000 0.000000 -0.000000 1.000000 0.036560 0.033691 cm
|
||||
0.929412 0.113725 0.141176 scn
|
||||
23.929649 23.929688 m
|
||||
0.000000 23.929688 l
|
||||
0.000000 0.000038 l
|
||||
23.929649 0.000038 l
|
||||
23.929649 23.929688 l
|
||||
h
|
||||
f
|
||||
n
|
||||
Q
|
||||
q
|
||||
1.000000 0.000000 -0.000000 1.000000 7.214905 5.298584 cm
|
||||
1.000000 1.000000 1.000000 scn
|
||||
4.783679 13.402832 m
|
||||
3.784734 13.402832 2.602884 12.440469 1.623637 10.828087 c
|
||||
0.607123 9.155016 0.047278 7.244560 0.000000 5.287462 c
|
||||
0.000000 2.656439 1.477313 0.000091 4.783679 0.000091 c
|
||||
8.090045 0.000091 9.567358 2.656439 9.567358 5.287462 c
|
||||
9.519758 7.241964 8.961978 9.150059 7.949348 10.822459 c
|
||||
6.964474 12.434840 5.779809 13.397204 4.783679 13.397204 c
|
||||
f
|
||||
n
|
||||
Q
|
||||
|
||||
endstream
|
||||
endobj
|
||||
|
||||
3 0 obj
|
||||
694
|
||||
endobj
|
||||
|
||||
4 0 obj
|
||||
<< /Annots []
|
||||
/Type /Page
|
||||
/MediaBox [ 0.000000 0.000000 24.000000 24.000000 ]
|
||||
/Resources 1 0 R
|
||||
/Contents 2 0 R
|
||||
/Parent 5 0 R
|
||||
>>
|
||||
endobj
|
||||
|
||||
5 0 obj
|
||||
<< /Kids [ 4 0 R ]
|
||||
/Count 1
|
||||
/Type /Pages
|
||||
>>
|
||||
endobj
|
||||
|
||||
6 0 obj
|
||||
<< /Type /Catalog
|
||||
/Pages 5 0 R
|
||||
>>
|
||||
endobj
|
||||
|
||||
xref
|
||||
0 7
|
||||
0000000000 65535 f
|
||||
0000000010 00000 n
|
||||
0000000034 00000 n
|
||||
0000000784 00000 n
|
||||
0000000806 00000 n
|
||||
0000000979 00000 n
|
||||
0000001053 00000 n
|
||||
trailer
|
||||
<< /ID [ (some) (id) ]
|
||||
/Root 6 0 R
|
||||
/Size 7
|
||||
>>
|
||||
startxref
|
||||
1112
|
||||
%%EOF
|
12
iphone/Maps/Images.xcassets/ic_logo_skyeng.imageset/Contents.json
vendored
Normal file
12
iphone/Maps/Images.xcassets/ic_logo_skyeng.imageset/Contents.json
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "ic_logo_skyeng.pdf"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
93
iphone/Maps/Images.xcassets/ic_logo_skyeng.imageset/ic_logo_skyeng.pdf
vendored
Normal file
93
iphone/Maps/Images.xcassets/ic_logo_skyeng.imageset/ic_logo_skyeng.pdf
vendored
Normal file
|
@ -0,0 +1,93 @@
|
|||
%PDF-1.7
|
||||
|
||||
1 0 obj
|
||||
<< >>
|
||||
endobj
|
||||
|
||||
2 0 obj
|
||||
<< /Length 3 0 R >>
|
||||
stream
|
||||
/DeviceRGB CS
|
||||
/DeviceRGB cs
|
||||
q
|
||||
1.000000 0.000000 -0.000000 1.000000 0.000000 0.000000 cm
|
||||
0.258824 0.529412 0.874510 scn
|
||||
24.000000 24.000000 m
|
||||
0.000000 24.000000 l
|
||||
0.000000 0.000000 l
|
||||
24.000000 0.000000 l
|
||||
24.000000 24.000000 l
|
||||
h
|
||||
f
|
||||
n
|
||||
Q
|
||||
q
|
||||
1.000000 0.000000 -0.000000 1.000000 7.228027 5.191162 cm
|
||||
1.000000 1.000000 1.000000 scn
|
||||
0.912758 3.419436 m
|
||||
0.912758 3.419436 2.373204 1.439775 4.928944 1.439775 c
|
||||
6.389349 1.439775 7.667220 2.159656 7.667220 3.509406 c
|
||||
7.667220 6.298877 0.273823 5.848986 0.273823 9.988207 c
|
||||
0.273823 12.327788 2.281916 13.497559 4.928944 13.497559 c
|
||||
6.389349 13.497559 9.036379 13.047628 9.036379 11.157978 c
|
||||
9.036379 10.078177 l
|
||||
7.393397 10.078177 l
|
||||
7.393397 10.708088 l
|
||||
7.393397 11.697878 6.024239 12.057838 5.111480 12.057838 c
|
||||
3.285963 12.057838 2.190629 11.427928 2.190629 10.168188 c
|
||||
2.190629 7.288707 9.584025 7.918577 9.584025 3.599376 c
|
||||
9.584025 1.439775 7.575932 0.000055 5.020192 0.000055 c
|
||||
1.642981 0.000055 0.000000 2.249626 0.000000 2.249626 c
|
||||
0.912758 3.419436 l
|
||||
h
|
||||
f
|
||||
n
|
||||
Q
|
||||
|
||||
endstream
|
||||
endobj
|
||||
|
||||
3 0 obj
|
||||
1007
|
||||
endobj
|
||||
|
||||
4 0 obj
|
||||
<< /Annots []
|
||||
/Type /Page
|
||||
/MediaBox [ 0.000000 0.000000 24.000000 24.000000 ]
|
||||
/Resources 1 0 R
|
||||
/Contents 2 0 R
|
||||
/Parent 5 0 R
|
||||
>>
|
||||
endobj
|
||||
|
||||
5 0 obj
|
||||
<< /Kids [ 4 0 R ]
|
||||
/Count 1
|
||||
/Type /Pages
|
||||
>>
|
||||
endobj
|
||||
|
||||
6 0 obj
|
||||
<< /Type /Catalog
|
||||
/Pages 5 0 R
|
||||
>>
|
||||
endobj
|
||||
|
||||
xref
|
||||
0 7
|
||||
0000000000 65535 f
|
||||
0000000010 00000 n
|
||||
0000000034 00000 n
|
||||
0000001097 00000 n
|
||||
0000001120 00000 n
|
||||
0000001293 00000 n
|
||||
0000001367 00000 n
|
||||
trailer
|
||||
<< /ID [ (some) (id) ]
|
||||
/Root 6 0 R
|
||||
/Size 7
|
||||
>>
|
||||
startxref
|
||||
1426
|
||||
%%EOF
|
12
iphone/Maps/Images.xcassets/ic_logo_tinkoff.imageset/Contents.json
vendored
Normal file
12
iphone/Maps/Images.xcassets/ic_logo_tinkoff.imageset/Contents.json
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "ic_logo_tinkoff.pdf"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
1638
iphone/Maps/Images.xcassets/ic_logo_tinkoff.imageset/ic_logo_tinkoff.pdf
vendored
Normal file
1638
iphone/Maps/Images.xcassets/ic_logo_tinkoff.imageset/ic_logo_tinkoff.pdf
vendored
Normal file
File diff suppressed because it is too large
Load diff
|
@ -295,6 +295,7 @@
|
|||
3D15ACEE2155117000F725D5 /* MWMObjectsCategorySelectorDataSource.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3D15ACED2155117000F725D5 /* MWMObjectsCategorySelectorDataSource.mm */; };
|
||||
3D1958EB213804B6009A83EC /* libmetrics.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3D1958EA213804B6009A83EC /* libmetrics.a */; };
|
||||
3DB1C57122D5DDA60097EC4C /* PromoAfterBookingViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3DB1C57022D5DDA60097EC4C /* PromoAfterBookingViewController.xib */; };
|
||||
3DBD7B9F242363E500ED9FE8 /* PartnerBannerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3DBD7B9E242363E500ED9FE8 /* PartnerBannerViewController.swift */; };
|
||||
3DE1762422D614B8000214FF /* PromoAfterBookingViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3DE1762322D614B8000214FF /* PromoAfterBookingViewController.swift */; };
|
||||
3DEE1AEB21F72CD300054A91 /* MWMPowerManagmentViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3DEE1AEA21F72CD300054A91 /* MWMPowerManagmentViewController.mm */; };
|
||||
3DF9C22B207CC14A00DA0793 /* taxi_places in Resources */ = {isa = PBXBuildFile; fileRef = 3DF9C22A207CC14A00DA0793 /* taxi_places */; };
|
||||
|
@ -367,9 +368,8 @@
|
|||
478F6FA423C447E500054A53 /* ReviewView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 478F6FA323C447E500054A53 /* ReviewView.swift */; };
|
||||
478F6FA623C4521F00054A53 /* MoreReviewsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 478F6FA523C4521F00054A53 /* MoreReviewsViewController.swift */; };
|
||||
478F6FA823C5067C00054A53 /* MyReviewView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 478F6FA723C5067C00054A53 /* MyReviewView.swift */; };
|
||||
479D305722C627CB00D18278 /* MWMMegafonBannerViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 479D305522C627CB00D18278 /* MWMMegafonBannerViewController.xib */; };
|
||||
479D305722C627CB00D18278 /* PartnerBannerViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 479D305522C627CB00D18278 /* PartnerBannerViewController.xib */; };
|
||||
479D305B22C62F4000D18278 /* MWMBookmarksBannerViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 479D305922C62F4000D18278 /* MWMBookmarksBannerViewController.xib */; };
|
||||
479D306122C6634900D18278 /* MWMMegafonBannerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 479D305F22C6634900D18278 /* MWMMegafonBannerViewController.m */; };
|
||||
479D306522C664CE00D18278 /* MWMDownloadBannerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 479D306422C664CE00D18278 /* MWMDownloadBannerViewController.m */; };
|
||||
479D306822C66C8F00D18278 /* MWMBookmarksBannerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 479D306722C66C8F00D18278 /* MWMBookmarksBannerViewController.m */; };
|
||||
479EE94A2292FB03009DEBA6 /* ActivityIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 479EE9492292FB03009DEBA6 /* ActivityIndicator.swift */; };
|
||||
|
@ -1368,6 +1368,7 @@
|
|||
3D15ACEF2155118800F725D5 /* MWMObjectsCategorySelectorDataSource.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MWMObjectsCategorySelectorDataSource.h; sourceTree = "<group>"; };
|
||||
3D1958EA213804B6009A83EC /* libmetrics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libmetrics.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
3DB1C57022D5DDA60097EC4C /* PromoAfterBookingViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = PromoAfterBookingViewController.xib; sourceTree = "<group>"; };
|
||||
3DBD7B9E242363E500ED9FE8 /* PartnerBannerViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PartnerBannerViewController.swift; sourceTree = "<group>"; };
|
||||
3DDB4BC31DAB98F000F4D021 /* libpartners_api.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libpartners_api.a; path = "../../../omim-xcode-build/Debug-iphonesimulator/libpartners_api.a"; sourceTree = "<group>"; };
|
||||
3DE1762322D614B8000214FF /* PromoAfterBookingViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PromoAfterBookingViewController.swift; sourceTree = "<group>"; };
|
||||
3DEE1AE921F72CD300054A91 /* MWMPowerManagmentViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MWMPowerManagmentViewController.h; sourceTree = "<group>"; };
|
||||
|
@ -1456,10 +1457,8 @@
|
|||
478F6FA323C447E500054A53 /* ReviewView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReviewView.swift; sourceTree = "<group>"; };
|
||||
478F6FA523C4521F00054A53 /* MoreReviewsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MoreReviewsViewController.swift; sourceTree = "<group>"; };
|
||||
478F6FA723C5067C00054A53 /* MyReviewView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MyReviewView.swift; sourceTree = "<group>"; };
|
||||
479D305522C627CB00D18278 /* MWMMegafonBannerViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MWMMegafonBannerViewController.xib; sourceTree = "<group>"; };
|
||||
479D305522C627CB00D18278 /* PartnerBannerViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = PartnerBannerViewController.xib; sourceTree = "<group>"; };
|
||||
479D305922C62F4000D18278 /* MWMBookmarksBannerViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MWMBookmarksBannerViewController.xib; sourceTree = "<group>"; };
|
||||
479D305E22C6634900D18278 /* MWMMegafonBannerViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MWMMegafonBannerViewController.h; sourceTree = "<group>"; };
|
||||
479D305F22C6634900D18278 /* MWMMegafonBannerViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MWMMegafonBannerViewController.m; sourceTree = "<group>"; };
|
||||
479D306322C664CE00D18278 /* MWMDownloadBannerViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MWMDownloadBannerViewController.h; sourceTree = "<group>"; };
|
||||
479D306422C664CE00D18278 /* MWMDownloadBannerViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MWMDownloadBannerViewController.m; sourceTree = "<group>"; };
|
||||
479D306622C66C8F00D18278 /* MWMBookmarksBannerViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MWMBookmarksBannerViewController.h; sourceTree = "<group>"; };
|
||||
|
@ -3328,11 +3327,10 @@
|
|||
479D306622C66C8F00D18278 /* MWMBookmarksBannerViewController.h */,
|
||||
479D306722C66C8F00D18278 /* MWMBookmarksBannerViewController.m */,
|
||||
479D305922C62F4000D18278 /* MWMBookmarksBannerViewController.xib */,
|
||||
479D305E22C6634900D18278 /* MWMMegafonBannerViewController.h */,
|
||||
479D305F22C6634900D18278 /* MWMMegafonBannerViewController.m */,
|
||||
479D305522C627CB00D18278 /* MWMMegafonBannerViewController.xib */,
|
||||
479D305522C627CB00D18278 /* PartnerBannerViewController.xib */,
|
||||
479D306322C664CE00D18278 /* MWMDownloadBannerViewController.h */,
|
||||
479D306422C664CE00D18278 /* MWMDownloadBannerViewController.m */,
|
||||
3DBD7B9E242363E500ED9FE8 /* PartnerBannerViewController.swift */,
|
||||
);
|
||||
path = Widgets;
|
||||
sourceTree = "<group>";
|
||||
|
@ -5012,7 +5010,7 @@
|
|||
F6E2FDFB1E097BA00083EBEC /* MWMOpeningHoursAllDayTableViewCell.xib in Resources */,
|
||||
342639361EA0E60A0025EB89 /* local_ads_symbols.txt in Resources */,
|
||||
4554B6EC1E55F0EF0084017F /* drules_proto_vehicle_clear.bin in Resources */,
|
||||
479D305722C627CB00D18278 /* MWMMegafonBannerViewController.xib in Resources */,
|
||||
479D305722C627CB00D18278 /* PartnerBannerViewController.xib in Resources */,
|
||||
337F98A321D37B5800C8AC27 /* SearchHistoryViewController.xib in Resources */,
|
||||
F6E2FE761E097BA00083EBEC /* MWMOpeningHoursCell.xib in Resources */,
|
||||
34AB66351FC5AA330078E451 /* RouteManagerCell.xib in Resources */,
|
||||
|
@ -5233,6 +5231,7 @@
|
|||
4767CDA420AAF66B00BD8166 /* NSAttributedString+HTML.swift in Sources */,
|
||||
47B06DFE21B965950094CCAD /* Geo.swift in Sources */,
|
||||
6741A9A91BF340DE002C974C /* MWMDefaultAlert.mm in Sources */,
|
||||
3DBD7B9F242363E500ED9FE8 /* PartnerBannerViewController.swift in Sources */,
|
||||
99514BBA23E82B450085D3A7 /* ElevationProfileViewController.swift in Sources */,
|
||||
340708781F2B5D6C00029ECC /* DimBackground.swift in Sources */,
|
||||
99D363172358647700941BF4 /* SubscriptionGroup.swift in Sources */,
|
||||
|
@ -5574,7 +5573,6 @@
|
|||
34AB668C1FC5AA330078E451 /* NavigationStreetNameView.swift in Sources */,
|
||||
993DF12923F6BDB100AC231A /* ThemeManager.swift in Sources */,
|
||||
337F98A621D37B7400C8AC27 /* SearchTabViewController.swift in Sources */,
|
||||
479D306122C6634900D18278 /* MWMMegafonBannerViewController.m in Sources */,
|
||||
3488B0131E9D0AEC0068AFD8 /* AdBannerCell.swift in Sources */,
|
||||
3404755F1E081A4600C92850 /* MWMLocationPredictor.mm in Sources */,
|
||||
993DF11523F6BDB100AC231A /* UISearchBarRenderer.swift in Sources */,
|
||||
|
|
|
@ -259,7 +259,7 @@ void registerCellsForTableView(std::vector<MWMEditorCellType> const & cells, UIT
|
|||
auto & f = GetFramework();
|
||||
auto const & featureID = m_mapObject.GetID();
|
||||
NSDictionary * info = @{
|
||||
kStatEditorMWMName : @(featureID.GetMwmName().c_str()),
|
||||
kStatMWMName : @(featureID.GetMwmName().c_str()),
|
||||
kStatEditorMWMVersion : @(featureID.GetMwmVersion())
|
||||
};
|
||||
BOOL const haveNote = self.note.length;
|
||||
|
@ -952,7 +952,7 @@ void registerCellsForTableView(std::vector<MWMEditorCellType> const & cells, UIT
|
|||
std::string const additional = additionalMessage.length ? additionalMessage.UTF8String : "";
|
||||
[Statistics logEvent:kStatEditorProblemReport
|
||||
withParameters:@{
|
||||
kStatEditorMWMName : @(fid.GetMwmName().c_str()),
|
||||
kStatMWMName : @(fid.GetMwmName().c_str()),
|
||||
kStatEditorMWMVersion : @(fid.GetMwmVersion()),
|
||||
kStatProblem : @(osm::Editor::kPlaceDoesNotExistMessage)
|
||||
}
|
||||
|
@ -967,7 +967,7 @@ void registerCellsForTableView(std::vector<MWMEditorCellType> const & cells, UIT
|
|||
auto revertAction = ^(BOOL isCreated) {
|
||||
[Statistics logEvent:isCreated ? kStatEditorAddCancel : kStatEditorEditCancel
|
||||
withParameters:@{
|
||||
kStatEditorMWMName : @(fid.GetMwmName().c_str()),
|
||||
kStatMWMName : @(fid.GetMwmName().c_str()),
|
||||
kStatEditorMWMVersion : @(fid.GetMwmVersion())
|
||||
}
|
||||
atLocation:location];
|
||||
|
|
|
@ -96,7 +96,7 @@ NSString * const kToEditorSegue = @"CategorySelectorToEditorSegue";
|
|||
withParameters:@{
|
||||
kStatIsAuthenticated: @(AuthorizationHaveCredentials()),
|
||||
kStatIsOnline: Platform::IsConnected() ? kStatYes : kStatNo,
|
||||
kStatEditorMWMName: @(featureID.GetMwmName().c_str()),
|
||||
kStatMWMName: @(featureID.GetMwmName().c_str()),
|
||||
kStatEditorMWMVersion: @(featureID.GetMwmVersion())
|
||||
}];
|
||||
}
|
||||
|
|
|
@ -93,6 +93,8 @@
|
|||
3DA5723320C195ED007BDE27 /* viewport_search_callback.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DA5722F20C195EC007BDE27 /* viewport_search_callback.cpp */; };
|
||||
3DBD7B92240D523400ED9FE8 /* elevation_info.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DBD7B90240D523300ED9FE8 /* elevation_info.cpp */; };
|
||||
3DBD7B93240D523400ED9FE8 /* elevation_info.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3DBD7B91240D523300ED9FE8 /* elevation_info.hpp */; };
|
||||
3DBD7BE124237FA600ED9FE8 /* download_on_map_ads_delegate.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3DBD7BDF24237FA500ED9FE8 /* download_on_map_ads_delegate.hpp */; };
|
||||
3DBD7BE224237FA600ED9FE8 /* download_on_map_ads_delegate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DBD7BE024237FA600ED9FE8 /* download_on_map_ads_delegate.cpp */; };
|
||||
3DD1166621888AAC007A2ED4 /* notification_queue_serdes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DD1165F21888AAC007A2ED4 /* notification_queue_serdes.cpp */; };
|
||||
3DD1166721888AAC007A2ED4 /* notification_queue.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3DD1166021888AAC007A2ED4 /* notification_queue.hpp */; };
|
||||
3DD1166821888AAC007A2ED4 /* notification_queue_storage.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3DD1166121888AAC007A2ED4 /* notification_queue_storage.hpp */; };
|
||||
|
@ -387,6 +389,8 @@
|
|||
3DA5722F20C195EC007BDE27 /* viewport_search_callback.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = viewport_search_callback.cpp; sourceTree = "<group>"; };
|
||||
3DBD7B90240D523300ED9FE8 /* elevation_info.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = elevation_info.cpp; sourceTree = "<group>"; };
|
||||
3DBD7B91240D523300ED9FE8 /* elevation_info.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = elevation_info.hpp; sourceTree = "<group>"; };
|
||||
3DBD7BDF24237FA500ED9FE8 /* download_on_map_ads_delegate.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = download_on_map_ads_delegate.hpp; sourceTree = "<group>"; };
|
||||
3DBD7BE024237FA600ED9FE8 /* download_on_map_ads_delegate.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = download_on_map_ads_delegate.cpp; sourceTree = "<group>"; };
|
||||
3DD1165F21888AAC007A2ED4 /* notification_queue_serdes.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = notification_queue_serdes.cpp; sourceTree = "<group>"; };
|
||||
3DD1166021888AAC007A2ED4 /* notification_queue.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = notification_queue.hpp; sourceTree = "<group>"; };
|
||||
3DD1166121888AAC007A2ED4 /* notification_queue_storage.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = notification_queue_storage.hpp; sourceTree = "<group>"; };
|
||||
|
@ -892,6 +896,8 @@
|
|||
675345BD1A4054AD00A0A8C3 /* map */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
3DBD7BE024237FA600ED9FE8 /* download_on_map_ads_delegate.cpp */,
|
||||
3DBD7BDF24237FA500ED9FE8 /* download_on_map_ads_delegate.hpp */,
|
||||
BB1C0195241BF73C0067FD5C /* track_mark.cpp */,
|
||||
BB1C0194241BF73C0067FD5C /* track_mark.hpp */,
|
||||
3DBD7B90240D523300ED9FE8 /* elevation_info.cpp */,
|
||||
|
@ -1069,6 +1075,7 @@
|
|||
3D4E99821FB462B60025B48C /* everywhere_search_params.hpp in Headers */,
|
||||
675346751A4054E800A0A8C3 /* mwm_url.hpp in Headers */,
|
||||
6753464B1A4054E800A0A8C3 /* bookmark.hpp in Headers */,
|
||||
3DBD7BE124237FA600ED9FE8 /* download_on_map_ads_delegate.hpp in Headers */,
|
||||
3D18DC3C22956DD100A583A6 /* framework_light_delegate.hpp in Headers */,
|
||||
4564FA82209497A70043CCFB /* bookmark_catalog.hpp in Headers */,
|
||||
3DA5714020B5CC80007BDE27 /* booking_filter_params.hpp in Headers */,
|
||||
|
@ -1324,6 +1331,7 @@
|
|||
3D4F44BC21345D270005E765 /* tips_api.cpp in Sources */,
|
||||
F6D2CE7E1EDEB7F500636DFD /* routing_manager.cpp in Sources */,
|
||||
3D74ABBE1EA76F1D0063A898 /* local_ads_supported_types.cpp in Sources */,
|
||||
3DBD7BE224237FA600ED9FE8 /* download_on_map_ads_delegate.cpp in Sources */,
|
||||
45A2D9D51F7556EB003310A0 /* user.cpp in Sources */,
|
||||
0C2B73DE1E92AB9900530BB8 /* local_ads_manager.cpp in Sources */,
|
||||
F6B283071C1B03320081957A /* gps_track_storage.cpp in Sources */,
|
||||
|
|
|
@ -7,15 +7,6 @@
|
|||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
3430643C1E9FBCF500DC7665 /* mopub_ads.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3430643A1E9FBCF500DC7665 /* mopub_ads.cpp */; };
|
||||
3430643D1E9FBCF500DC7665 /* mopub_ads.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3430643B1E9FBCF500DC7665 /* mopub_ads.hpp */; };
|
||||
346E88961E9D087400D4CE9B /* ads_base.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 346E888F1E9D087400D4CE9B /* ads_base.cpp */; };
|
||||
346E88971E9D087400D4CE9B /* ads_base.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 346E88901E9D087400D4CE9B /* ads_base.hpp */; };
|
||||
346E88981E9D087400D4CE9B /* ads_engine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 346E88911E9D087400D4CE9B /* ads_engine.cpp */; };
|
||||
346E88991E9D087400D4CE9B /* ads_engine.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 346E88921E9D087400D4CE9B /* ads_engine.hpp */; };
|
||||
346E889A1E9D087400D4CE9B /* banner.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 346E88931E9D087400D4CE9B /* banner.hpp */; };
|
||||
346E889B1E9D087400D4CE9B /* rb_ads.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 346E88941E9D087400D4CE9B /* rb_ads.cpp */; };
|
||||
346E889C1E9D087400D4CE9B /* rb_ads.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 346E88951E9D087400D4CE9B /* rb_ads.hpp */; };
|
||||
3488B0371E9D11860068AFD8 /* ads_engine_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 346E889D1E9D088200D4CE9B /* ads_engine_tests.cpp */; };
|
||||
3488B0381E9D11890068AFD8 /* rb_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 346E889E1E9D088200D4CE9B /* rb_tests.cpp */; };
|
||||
3488B0391E9D118D0068AFD8 /* facebook_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DBC1C501E4B14810016897F /* facebook_tests.cpp */; };
|
||||
|
@ -40,25 +31,51 @@
|
|||
3D18DC4422956E0900A583A6 /* promo_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D18DC4322956E0900A583A6 /* promo_tests.cpp */; };
|
||||
3D452AEF1EE6D202009EAB9B /* google_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D452AED1EE6D202009EAB9B /* google_tests.cpp */; };
|
||||
3D452AF01EE6D202009EAB9B /* mopub_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D452AEE1EE6D202009EAB9B /* mopub_tests.cpp */; };
|
||||
3D452AF31EE6D20D009EAB9B /* google_ads.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D452AF11EE6D20D009EAB9B /* google_ads.cpp */; };
|
||||
3D452AF41EE6D20D009EAB9B /* google_ads.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3D452AF21EE6D20D009EAB9B /* google_ads.hpp */; };
|
||||
3D47B29A1F054C89000828D2 /* taxi_base.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D47B2961F054C89000828D2 /* taxi_base.cpp */; };
|
||||
3D47B2B11F14FA14000828D2 /* utils.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3D47B2B01F14FA14000828D2 /* utils.hpp */; };
|
||||
3D4E997C1FB439260025B48C /* booking_availability_params.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3D4E997A1FB439260025B48C /* booking_availability_params.hpp */; };
|
||||
3D4E997D1FB439260025B48C /* booking_availability_params.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D4E997B1FB439260025B48C /* booking_availability_params.cpp */; };
|
||||
3D4E997F1FB439300025B48C /* utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D4E997E1FB439300025B48C /* utils.cpp */; };
|
||||
3DA5713420B57358007BDE27 /* booking_params_base.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3DA5713320B57358007BDE27 /* booking_params_base.hpp */; };
|
||||
3DBC1C541E4B14920016897F /* facebook_ads.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DBC1C521E4B14920016897F /* facebook_ads.cpp */; };
|
||||
3DBC1C551E4B14920016897F /* facebook_ads.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3DBC1C531E4B14920016897F /* facebook_ads.hpp */; };
|
||||
3DBD7B9824112DE100ED9FE8 /* freenow_api.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DBD7B9624112DE000ED9FE8 /* freenow_api.cpp */; };
|
||||
3DBD7B9924112DE100ED9FE8 /* freenow_api.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3DBD7B9724112DE100ED9FE8 /* freenow_api.hpp */; };
|
||||
3DBD7B9B24112DEA00ED9FE8 /* freenow_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DBD7B9A24112DEA00ED9FE8 /* freenow_tests.cpp */; };
|
||||
3DBD7BFF24251BF000ED9FE8 /* bookmark_catalog_ads.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DBD7BE624251BF000ED9FE8 /* bookmark_catalog_ads.cpp */; };
|
||||
3DBD7C0024251BF000ED9FE8 /* google_ads.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3DBD7BE724251BF000ED9FE8 /* google_ads.hpp */; };
|
||||
3DBD7C0124251BF000ED9FE8 /* banner.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3DBD7BE824251BF000ED9FE8 /* banner.hpp */; };
|
||||
3DBD7C0224251BF000ED9FE8 /* tinkoff_insurance_ads.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3DBD7BE924251BF000ED9FE8 /* tinkoff_insurance_ads.hpp */; };
|
||||
3DBD7C0324251BF000ED9FE8 /* tinkoff_allairlines_ads.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3DBD7BEA24251BF000ED9FE8 /* tinkoff_allairlines_ads.hpp */; };
|
||||
3DBD7C0424251BF000ED9FE8 /* mopub_ads.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3DBD7BEB24251BF000ED9FE8 /* mopub_ads.hpp */; };
|
||||
3DBD7C0524251BF000ED9FE8 /* rb_ads.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DBD7BEC24251BF000ED9FE8 /* rb_ads.cpp */; };
|
||||
3DBD7C0624251BF000ED9FE8 /* ads_engine.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3DBD7BED24251BF000ED9FE8 /* ads_engine.hpp */; };
|
||||
3DBD7C0724251BF000ED9FE8 /* mts_ads.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DBD7BEE24251BF000ED9FE8 /* mts_ads.cpp */; };
|
||||
3DBD7C0824251BF000ED9FE8 /* skyeng_ads.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DBD7BEF24251BF000ED9FE8 /* skyeng_ads.cpp */; };
|
||||
3DBD7C0924251BF000ED9FE8 /* ads_utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DBD7BF024251BF000ED9FE8 /* ads_utils.cpp */; };
|
||||
3DBD7C0A24251BF000ED9FE8 /* ads_base.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3DBD7BF124251BF000ED9FE8 /* ads_base.hpp */; };
|
||||
3DBD7C0B24251BF000ED9FE8 /* facebook_ads.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3DBD7BF224251BF000ED9FE8 /* facebook_ads.hpp */; };
|
||||
3DBD7C0C24251BF000ED9FE8 /* tinkoff_allairlines_ads.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DBD7BF324251BF000ED9FE8 /* tinkoff_allairlines_ads.cpp */; };
|
||||
3DBD7C0D24251BF000ED9FE8 /* mts_ads.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3DBD7BF424251BF000ED9FE8 /* mts_ads.hpp */; };
|
||||
3DBD7C0E24251BF000ED9FE8 /* rb_ads.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3DBD7BF524251BF000ED9FE8 /* rb_ads.hpp */; };
|
||||
3DBD7C0F24251BF000ED9FE8 /* mopub_ads.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DBD7BF624251BF000ED9FE8 /* mopub_ads.cpp */; };
|
||||
3DBD7C1024251BF000ED9FE8 /* ads_engine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DBD7BF724251BF000ED9FE8 /* ads_engine.cpp */; };
|
||||
3DBD7C1124251BF000ED9FE8 /* skyeng_ads.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3DBD7BF824251BF000ED9FE8 /* skyeng_ads.hpp */; };
|
||||
3DBD7C1224251BF000ED9FE8 /* ads_utils.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3DBD7BF924251BF000ED9FE8 /* ads_utils.hpp */; };
|
||||
3DBD7C1324251BF000ED9FE8 /* ads_base.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DBD7BFA24251BF000ED9FE8 /* ads_base.cpp */; };
|
||||
3DBD7C1424251BF000ED9FE8 /* facebook_ads.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DBD7BFB24251BF000ED9FE8 /* facebook_ads.cpp */; };
|
||||
3DBD7C1524251BF000ED9FE8 /* bookmark_catalog_ads.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3DBD7BFC24251BF000ED9FE8 /* bookmark_catalog_ads.hpp */; };
|
||||
3DBD7C1624251BF000ED9FE8 /* google_ads.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DBD7BFD24251BF000ED9FE8 /* google_ads.cpp */; };
|
||||
3DBD7C1724251BF000ED9FE8 /* tinkoff_insurance_ads.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DBD7BFE24251BF000ED9FE8 /* tinkoff_insurance_ads.cpp */; };
|
||||
3DBD7C1E24251C1100ED9FE8 /* tinkoff_insurance_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DBD7C1824251C1000ED9FE8 /* tinkoff_insurance_tests.cpp */; };
|
||||
3DBD7C1F24251C1100ED9FE8 /* mts_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DBD7C1924251C1000ED9FE8 /* mts_tests.cpp */; };
|
||||
3DBD7C2024251C1100ED9FE8 /* download_on_map_container_delegate.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3DBD7C1A24251C1000ED9FE8 /* download_on_map_container_delegate.hpp */; };
|
||||
3DBD7C2124251C1100ED9FE8 /* skyeng_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DBD7C1B24251C1000ED9FE8 /* skyeng_tests.cpp */; };
|
||||
3DBD7C2224251C1100ED9FE8 /* bookmark_catalog_ads_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DBD7C1C24251C1100ED9FE8 /* bookmark_catalog_ads_tests.cpp */; };
|
||||
3DBD7C2324251C1100ED9FE8 /* tinkoff_airlines_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DBD7C1D24251C1100ED9FE8 /* tinkoff_airlines_tests.cpp */; };
|
||||
3DCD415320DAB33700143533 /* booking_block_params.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DCD415120DAB33700143533 /* booking_block_params.cpp */; };
|
||||
3DCD415420DAB33700143533 /* booking_block_params.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3DCD415220DAB33700143533 /* booking_block_params.hpp */; };
|
||||
3DF01C2D20652463005DDF8C /* taxi_places.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DF01C2A20652462005DDF8C /* taxi_places.cpp */; };
|
||||
3DF01C2E20652463005DDF8C /* taxi_places.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3DF01C2B20652463005DDF8C /* taxi_places.hpp */; };
|
||||
3DF9C219207CAC3000DA0793 /* taxi_places_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DF9C218207CAC3000DA0793 /* taxi_places_tests.cpp */; };
|
||||
3DFEBF861EF82BEA00317D5C /* viator_api.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3DFEBF841EF82BEA00317D5C /* viator_api.hpp */; };
|
||||
3DFEBF9A1EFBFC1500317D5C /* taxi_base.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3DFEBF941EFBFC1500317D5C /* taxi_base.hpp */; };
|
||||
3DFEBF9B1EFBFC1500317D5C /* taxi_engine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DFEBF951EFBFC1500317D5C /* taxi_engine.cpp */; };
|
||||
3DFEBF9C1EFBFC1500317D5C /* taxi_engine.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3DFEBF961EFBFC1500317D5C /* taxi_engine.hpp */; };
|
||||
|
@ -103,15 +120,6 @@
|
|||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
3430643A1E9FBCF500DC7665 /* mopub_ads.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mopub_ads.cpp; sourceTree = "<group>"; };
|
||||
3430643B1E9FBCF500DC7665 /* mopub_ads.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = mopub_ads.hpp; sourceTree = "<group>"; };
|
||||
346E888F1E9D087400D4CE9B /* ads_base.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ads_base.cpp; sourceTree = "<group>"; };
|
||||
346E88901E9D087400D4CE9B /* ads_base.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = ads_base.hpp; sourceTree = "<group>"; };
|
||||
346E88911E9D087400D4CE9B /* ads_engine.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ads_engine.cpp; sourceTree = "<group>"; };
|
||||
346E88921E9D087400D4CE9B /* ads_engine.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = ads_engine.hpp; sourceTree = "<group>"; };
|
||||
346E88931E9D087400D4CE9B /* banner.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = banner.hpp; sourceTree = "<group>"; };
|
||||
346E88941E9D087400D4CE9B /* rb_ads.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rb_ads.cpp; sourceTree = "<group>"; };
|
||||
346E88951E9D087400D4CE9B /* rb_ads.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = rb_ads.hpp; sourceTree = "<group>"; };
|
||||
346E889D1E9D088200D4CE9B /* ads_engine_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ads_engine_tests.cpp; sourceTree = "<group>"; };
|
||||
346E889E1E9D088200D4CE9B /* rb_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rb_tests.cpp; sourceTree = "<group>"; };
|
||||
3475E0E11DBF581B004C7E69 /* common-debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "common-debug.xcconfig"; path = "../common-debug.xcconfig"; sourceTree = "<group>"; };
|
||||
|
@ -137,8 +145,6 @@
|
|||
3D18DC4322956E0900A583A6 /* promo_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = promo_tests.cpp; sourceTree = "<group>"; };
|
||||
3D452AED1EE6D202009EAB9B /* google_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = google_tests.cpp; sourceTree = "<group>"; };
|
||||
3D452AEE1EE6D202009EAB9B /* mopub_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mopub_tests.cpp; sourceTree = "<group>"; };
|
||||
3D452AF11EE6D20D009EAB9B /* google_ads.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = google_ads.cpp; sourceTree = "<group>"; };
|
||||
3D452AF21EE6D20D009EAB9B /* google_ads.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = google_ads.hpp; sourceTree = "<group>"; };
|
||||
3D47B2801F00F94D000828D2 /* mopub_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mopub_tests.cpp; sourceTree = "<group>"; };
|
||||
3D47B2961F054C89000828D2 /* taxi_base.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = taxi_base.cpp; sourceTree = "<group>"; };
|
||||
3D47B2B01F14FA14000828D2 /* utils.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = utils.hpp; sourceTree = "<group>"; };
|
||||
|
@ -147,11 +153,40 @@
|
|||
3D4E997E1FB439300025B48C /* utils.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = utils.cpp; sourceTree = "<group>"; };
|
||||
3DA5713320B57358007BDE27 /* booking_params_base.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = booking_params_base.hpp; sourceTree = "<group>"; };
|
||||
3DBC1C501E4B14810016897F /* facebook_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = facebook_tests.cpp; sourceTree = "<group>"; };
|
||||
3DBC1C521E4B14920016897F /* facebook_ads.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = facebook_ads.cpp; sourceTree = "<group>"; };
|
||||
3DBC1C531E4B14920016897F /* facebook_ads.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = facebook_ads.hpp; sourceTree = "<group>"; };
|
||||
3DBD7B9624112DE000ED9FE8 /* freenow_api.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = freenow_api.cpp; sourceTree = "<group>"; };
|
||||
3DBD7B9724112DE100ED9FE8 /* freenow_api.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = freenow_api.hpp; sourceTree = "<group>"; };
|
||||
3DBD7B9A24112DEA00ED9FE8 /* freenow_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = freenow_tests.cpp; sourceTree = "<group>"; };
|
||||
3DBD7BE624251BF000ED9FE8 /* bookmark_catalog_ads.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = bookmark_catalog_ads.cpp; sourceTree = "<group>"; };
|
||||
3DBD7BE724251BF000ED9FE8 /* google_ads.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = google_ads.hpp; sourceTree = "<group>"; };
|
||||
3DBD7BE824251BF000ED9FE8 /* banner.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = banner.hpp; sourceTree = "<group>"; };
|
||||
3DBD7BE924251BF000ED9FE8 /* tinkoff_insurance_ads.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = tinkoff_insurance_ads.hpp; sourceTree = "<group>"; };
|
||||
3DBD7BEA24251BF000ED9FE8 /* tinkoff_allairlines_ads.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = tinkoff_allairlines_ads.hpp; sourceTree = "<group>"; };
|
||||
3DBD7BEB24251BF000ED9FE8 /* mopub_ads.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = mopub_ads.hpp; sourceTree = "<group>"; };
|
||||
3DBD7BEC24251BF000ED9FE8 /* rb_ads.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rb_ads.cpp; sourceTree = "<group>"; };
|
||||
3DBD7BED24251BF000ED9FE8 /* ads_engine.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = ads_engine.hpp; sourceTree = "<group>"; };
|
||||
3DBD7BEE24251BF000ED9FE8 /* mts_ads.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mts_ads.cpp; sourceTree = "<group>"; };
|
||||
3DBD7BEF24251BF000ED9FE8 /* skyeng_ads.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = skyeng_ads.cpp; sourceTree = "<group>"; };
|
||||
3DBD7BF024251BF000ED9FE8 /* ads_utils.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ads_utils.cpp; sourceTree = "<group>"; };
|
||||
3DBD7BF124251BF000ED9FE8 /* ads_base.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = ads_base.hpp; sourceTree = "<group>"; };
|
||||
3DBD7BF224251BF000ED9FE8 /* facebook_ads.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = facebook_ads.hpp; sourceTree = "<group>"; };
|
||||
3DBD7BF324251BF000ED9FE8 /* tinkoff_allairlines_ads.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tinkoff_allairlines_ads.cpp; sourceTree = "<group>"; };
|
||||
3DBD7BF424251BF000ED9FE8 /* mts_ads.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = mts_ads.hpp; sourceTree = "<group>"; };
|
||||
3DBD7BF524251BF000ED9FE8 /* rb_ads.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = rb_ads.hpp; sourceTree = "<group>"; };
|
||||
3DBD7BF624251BF000ED9FE8 /* mopub_ads.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mopub_ads.cpp; sourceTree = "<group>"; };
|
||||
3DBD7BF724251BF000ED9FE8 /* ads_engine.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ads_engine.cpp; sourceTree = "<group>"; };
|
||||
3DBD7BF824251BF000ED9FE8 /* skyeng_ads.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = skyeng_ads.hpp; sourceTree = "<group>"; };
|
||||
3DBD7BF924251BF000ED9FE8 /* ads_utils.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = ads_utils.hpp; sourceTree = "<group>"; };
|
||||
3DBD7BFA24251BF000ED9FE8 /* ads_base.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ads_base.cpp; sourceTree = "<group>"; };
|
||||
3DBD7BFB24251BF000ED9FE8 /* facebook_ads.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = facebook_ads.cpp; sourceTree = "<group>"; };
|
||||
3DBD7BFC24251BF000ED9FE8 /* bookmark_catalog_ads.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = bookmark_catalog_ads.hpp; sourceTree = "<group>"; };
|
||||
3DBD7BFD24251BF000ED9FE8 /* google_ads.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = google_ads.cpp; sourceTree = "<group>"; };
|
||||
3DBD7BFE24251BF000ED9FE8 /* tinkoff_insurance_ads.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tinkoff_insurance_ads.cpp; sourceTree = "<group>"; };
|
||||
3DBD7C1824251C1000ED9FE8 /* tinkoff_insurance_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tinkoff_insurance_tests.cpp; sourceTree = "<group>"; };
|
||||
3DBD7C1924251C1000ED9FE8 /* mts_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mts_tests.cpp; sourceTree = "<group>"; };
|
||||
3DBD7C1A24251C1000ED9FE8 /* download_on_map_container_delegate.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = download_on_map_container_delegate.hpp; sourceTree = "<group>"; };
|
||||
3DBD7C1B24251C1000ED9FE8 /* skyeng_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = skyeng_tests.cpp; sourceTree = "<group>"; };
|
||||
3DBD7C1C24251C1100ED9FE8 /* bookmark_catalog_ads_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = bookmark_catalog_ads_tests.cpp; sourceTree = "<group>"; };
|
||||
3DBD7C1D24251C1100ED9FE8 /* tinkoff_airlines_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tinkoff_airlines_tests.cpp; sourceTree = "<group>"; };
|
||||
3DCD415120DAB33700143533 /* booking_block_params.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = booking_block_params.cpp; sourceTree = "<group>"; };
|
||||
3DCD415220DAB33700143533 /* booking_block_params.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = booking_block_params.hpp; sourceTree = "<group>"; };
|
||||
3DF01C2A20652462005DDF8C /* taxi_places.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = taxi_places.cpp; sourceTree = "<group>"; };
|
||||
|
@ -159,9 +194,6 @@
|
|||
3DF9C218207CAC3000DA0793 /* taxi_places_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = taxi_places_tests.cpp; sourceTree = "<group>"; };
|
||||
3DF9C21A207CAC3B00DA0793 /* taxi_places_loader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = taxi_places_loader.cpp; sourceTree = "<group>"; };
|
||||
3DF9C21B207CAC3B00DA0793 /* taxi_places_loader.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = taxi_places_loader.hpp; sourceTree = "<group>"; };
|
||||
3DFEBF831EF82BEA00317D5C /* viator_api.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = viator_api.cpp; sourceTree = "<group>"; };
|
||||
3DFEBF841EF82BEA00317D5C /* viator_api.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = viator_api.hpp; sourceTree = "<group>"; };
|
||||
3DFEBF871EF82C1300317D5C /* viator_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = viator_tests.cpp; sourceTree = "<group>"; };
|
||||
3DFEBF941EFBFC1500317D5C /* taxi_base.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = taxi_base.hpp; sourceTree = "<group>"; };
|
||||
3DFEBF951EFBFC1500317D5C /* taxi_engine.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = taxi_engine.cpp; sourceTree = "<group>"; };
|
||||
3DFEBF961EFBFC1500317D5C /* taxi_engine.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = taxi_engine.hpp; sourceTree = "<group>"; };
|
||||
|
@ -241,6 +273,38 @@
|
|||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
3DBD7BE524251BF000ED9FE8 /* ads */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
3DBD7BE624251BF000ED9FE8 /* bookmark_catalog_ads.cpp */,
|
||||
3DBD7BE724251BF000ED9FE8 /* google_ads.hpp */,
|
||||
3DBD7BE824251BF000ED9FE8 /* banner.hpp */,
|
||||
3DBD7BE924251BF000ED9FE8 /* tinkoff_insurance_ads.hpp */,
|
||||
3DBD7BEA24251BF000ED9FE8 /* tinkoff_allairlines_ads.hpp */,
|
||||
3DBD7BEB24251BF000ED9FE8 /* mopub_ads.hpp */,
|
||||
3DBD7BEC24251BF000ED9FE8 /* rb_ads.cpp */,
|
||||
3DBD7BED24251BF000ED9FE8 /* ads_engine.hpp */,
|
||||
3DBD7BEE24251BF000ED9FE8 /* mts_ads.cpp */,
|
||||
3DBD7BEF24251BF000ED9FE8 /* skyeng_ads.cpp */,
|
||||
3DBD7BF024251BF000ED9FE8 /* ads_utils.cpp */,
|
||||
3DBD7BF124251BF000ED9FE8 /* ads_base.hpp */,
|
||||
3DBD7BF224251BF000ED9FE8 /* facebook_ads.hpp */,
|
||||
3DBD7BF324251BF000ED9FE8 /* tinkoff_allairlines_ads.cpp */,
|
||||
3DBD7BF424251BF000ED9FE8 /* mts_ads.hpp */,
|
||||
3DBD7BF524251BF000ED9FE8 /* rb_ads.hpp */,
|
||||
3DBD7BF624251BF000ED9FE8 /* mopub_ads.cpp */,
|
||||
3DBD7BF724251BF000ED9FE8 /* ads_engine.cpp */,
|
||||
3DBD7BF824251BF000ED9FE8 /* skyeng_ads.hpp */,
|
||||
3DBD7BF924251BF000ED9FE8 /* ads_utils.hpp */,
|
||||
3DBD7BFA24251BF000ED9FE8 /* ads_base.cpp */,
|
||||
3DBD7BFB24251BF000ED9FE8 /* facebook_ads.cpp */,
|
||||
3DBD7BFC24251BF000ED9FE8 /* bookmark_catalog_ads.hpp */,
|
||||
3DBD7BFD24251BF000ED9FE8 /* google_ads.cpp */,
|
||||
3DBD7BFE24251BF000ED9FE8 /* tinkoff_insurance_ads.cpp */,
|
||||
);
|
||||
path = ads;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
F6B5362B1DA5209F0067EEA5 = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
|
@ -266,15 +330,11 @@
|
|||
F6B5363B1DA520B20067EEA5 /* partners_api */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
3DBD7BE524251BF000ED9FE8 /* ads */,
|
||||
3DBD7B9624112DE000ED9FE8 /* freenow_api.cpp */,
|
||||
3DBD7B9724112DE100ED9FE8 /* freenow_api.hpp */,
|
||||
3D1775A52318198600F8889C /* promo_catalog_types.cpp */,
|
||||
3D1775A62318198700F8889C /* promo_catalog_types.hpp */,
|
||||
346E888F1E9D087400D4CE9B /* ads_base.cpp */,
|
||||
346E88901E9D087400D4CE9B /* ads_base.hpp */,
|
||||
346E88911E9D087400D4CE9B /* ads_engine.cpp */,
|
||||
346E88921E9D087400D4CE9B /* ads_engine.hpp */,
|
||||
346E88931E9D087400D4CE9B /* banner.hpp */,
|
||||
F6B5363C1DA520E40067EEA5 /* booking_api.cpp */,
|
||||
F6B5363D1DA520E40067EEA5 /* booking_api.hpp */,
|
||||
3D4E997B1FB439260025B48C /* booking_availability_params.cpp */,
|
||||
|
@ -284,26 +344,18 @@
|
|||
3DA5713320B57358007BDE27 /* booking_params_base.hpp */,
|
||||
45BABC31229812820060FA53 /* downloader_promo.cpp */,
|
||||
45BABC32229812830060FA53 /* downloader_promo.hpp */,
|
||||
3DBC1C521E4B14920016897F /* facebook_ads.cpp */,
|
||||
3DBC1C531E4B14920016897F /* facebook_ads.hpp */,
|
||||
3D452AF11EE6D20D009EAB9B /* google_ads.cpp */,
|
||||
3D452AF21EE6D20D009EAB9B /* google_ads.hpp */,
|
||||
BB1956E41F543D7B003ECE6C /* locals_api.cpp */,
|
||||
BB1956E51F543D7C003ECE6C /* locals_api.hpp */,
|
||||
349CFD09204571FF00569949 /* maxim_api.cpp */,
|
||||
349CFD08204571FF00569949 /* maxim_api.hpp */,
|
||||
4566604E20D91FED0085E8C1 /* megafon_countries.cpp */,
|
||||
4566604F20D91FEE0085E8C1 /* megafon_countries.hpp */,
|
||||
3430643A1E9FBCF500DC7665 /* mopub_ads.cpp */,
|
||||
3430643B1E9FBCF500DC7665 /* mopub_ads.hpp */,
|
||||
F67E75231DB8F06F00D6741F /* opentable_api.cpp */,
|
||||
F67E75241DB8F06F00D6741F /* opentable_api.hpp */,
|
||||
45C380752094C5B400C18D81 /* partners.cpp */,
|
||||
45C380762094C5B400C18D81 /* partners.hpp */,
|
||||
3D18DC4022956DFA00A583A6 /* promo_api.cpp */,
|
||||
3D18DC3F22956DFA00A583A6 /* promo_api.hpp */,
|
||||
346E88941E9D087400D4CE9B /* rb_ads.cpp */,
|
||||
346E88951E9D087400D4CE9B /* rb_ads.hpp */,
|
||||
3D15ACE5214AA1B000F725D5 /* rutaxi_api.cpp */,
|
||||
3D15ACE4214AA1B000F725D5 /* rutaxi_api.hpp */,
|
||||
3D47B2961F054C89000828D2 /* taxi_base.cpp */,
|
||||
|
@ -321,8 +373,6 @@
|
|||
3D4E997E1FB439300025B48C /* utils.cpp */,
|
||||
3D47B2B01F14FA14000828D2 /* utils.hpp */,
|
||||
45AC338E22C4F448004DC574 /* utm.hpp */,
|
||||
3DFEBF831EF82BEA00317D5C /* viator_api.cpp */,
|
||||
3DFEBF841EF82BEA00317D5C /* viator_api.hpp */,
|
||||
3DFEBF981EFBFC1500317D5C /* yandex_api.cpp */,
|
||||
3DFEBF991EFBFC1500317D5C /* yandex_api.hpp */,
|
||||
);
|
||||
|
@ -333,6 +383,12 @@
|
|||
F6B536441DA521060067EEA5 /* partners_api_tests */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
3DBD7C1C24251C1100ED9FE8 /* bookmark_catalog_ads_tests.cpp */,
|
||||
3DBD7C1A24251C1000ED9FE8 /* download_on_map_container_delegate.hpp */,
|
||||
3DBD7C1924251C1000ED9FE8 /* mts_tests.cpp */,
|
||||
3DBD7C1B24251C1000ED9FE8 /* skyeng_tests.cpp */,
|
||||
3DBD7C1D24251C1100ED9FE8 /* tinkoff_airlines_tests.cpp */,
|
||||
3DBD7C1824251C1000ED9FE8 /* tinkoff_insurance_tests.cpp */,
|
||||
3DBD7B9A24112DEA00ED9FE8 /* freenow_tests.cpp */,
|
||||
3D18DC4322956E0900A583A6 /* promo_tests.cpp */,
|
||||
3D18DC3222953FF600A583A6 /* rutaxi_tests.cpp */,
|
||||
|
@ -348,7 +404,6 @@
|
|||
3DF9C218207CAC3000DA0793 /* taxi_places_tests.cpp */,
|
||||
F6B536691DA523060067EEA5 /* testingmain.cpp */,
|
||||
F6B536461DA5213D0067EEA5 /* uber_tests.cpp */,
|
||||
3DFEBF871EF82C1300317D5C /* viator_tests.cpp */,
|
||||
3DFEBFA11EFBFC2300317D5C /* yandex_tests.cpp */,
|
||||
3D452AEE1EE6D202009EAB9B /* mopub_tests.cpp */,
|
||||
);
|
||||
|
@ -396,36 +451,42 @@
|
|||
isa = PBXHeadersBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
3DBD7C0024251BF000ED9FE8 /* google_ads.hpp in Headers */,
|
||||
3DA5713420B57358007BDE27 /* booking_params_base.hpp in Headers */,
|
||||
3DBD7C0224251BF000ED9FE8 /* tinkoff_insurance_ads.hpp in Headers */,
|
||||
3D18DC4122956DFA00A583A6 /* promo_api.hpp in Headers */,
|
||||
3D1775A82318198700F8889C /* promo_catalog_types.hpp in Headers */,
|
||||
346E88971E9D087400D4CE9B /* ads_base.hpp in Headers */,
|
||||
3DBD7C1524251BF000ED9FE8 /* bookmark_catalog_ads.hpp in Headers */,
|
||||
3DCD415420DAB33700143533 /* booking_block_params.hpp in Headers */,
|
||||
F67E75261DB8F06F00D6741F /* opentable_api.hpp in Headers */,
|
||||
3D452AF41EE6D20D009EAB9B /* google_ads.hpp in Headers */,
|
||||
F6B536411DA520E40067EEA5 /* booking_api.hpp in Headers */,
|
||||
3430643D1E9FBCF500DC7665 /* mopub_ads.hpp in Headers */,
|
||||
3DBD7C1124251BF000ED9FE8 /* skyeng_ads.hpp in Headers */,
|
||||
3DBD7C0B24251BF000ED9FE8 /* facebook_ads.hpp in Headers */,
|
||||
3D47B2B11F14FA14000828D2 /* utils.hpp in Headers */,
|
||||
3DBD7C0324251BF000ED9FE8 /* tinkoff_allairlines_ads.hpp in Headers */,
|
||||
3DBD7C0A24251BF000ED9FE8 /* ads_base.hpp in Headers */,
|
||||
3DBD7C0D24251BF000ED9FE8 /* mts_ads.hpp in Headers */,
|
||||
3D15ACE7214AA1B000F725D5 /* rutaxi_api.hpp in Headers */,
|
||||
45C380782094C5B400C18D81 /* partners.hpp in Headers */,
|
||||
3DFEBF861EF82BEA00317D5C /* viator_api.hpp in Headers */,
|
||||
346E889C1E9D087400D4CE9B /* rb_ads.hpp in Headers */,
|
||||
45BABC34229812830060FA53 /* downloader_promo.hpp in Headers */,
|
||||
3DBD7B9924112DE100ED9FE8 /* freenow_api.hpp in Headers */,
|
||||
3D15ACE6214AA1B000F725D5 /* taxi_delegate.hpp in Headers */,
|
||||
3DFEBF9A1EFBFC1500317D5C /* taxi_base.hpp in Headers */,
|
||||
346E889A1E9D087400D4CE9B /* banner.hpp in Headers */,
|
||||
3DFEBF9F1EFBFC1500317D5C /* yandex_api.hpp in Headers */,
|
||||
3DFEBF9D1EFBFC1500317D5C /* taxi_provider.hpp in Headers */,
|
||||
346E88991E9D087400D4CE9B /* ads_engine.hpp in Headers */,
|
||||
349CFD0A2045720000569949 /* maxim_api.hpp in Headers */,
|
||||
3D4E997C1FB439260025B48C /* booking_availability_params.hpp in Headers */,
|
||||
3DFEBF9C1EFBFC1500317D5C /* taxi_engine.hpp in Headers */,
|
||||
3DBD7C0124251BF000ED9FE8 /* banner.hpp in Headers */,
|
||||
45AC338F22C4F449004DC574 /* utm.hpp in Headers */,
|
||||
4566605120D91FEE0085E8C1 /* megafon_countries.hpp in Headers */,
|
||||
F6B536431DA520E40067EEA5 /* uber_api.hpp in Headers */,
|
||||
3DBC1C551E4B14920016897F /* facebook_ads.hpp in Headers */,
|
||||
3DBD7C0424251BF000ED9FE8 /* mopub_ads.hpp in Headers */,
|
||||
3DBD7C1224251BF000ED9FE8 /* ads_utils.hpp in Headers */,
|
||||
3DBD7C0624251BF000ED9FE8 /* ads_engine.hpp in Headers */,
|
||||
3DBD7C2024251C1100ED9FE8 /* download_on_map_container_delegate.hpp in Headers */,
|
||||
3DF01C2E20652463005DDF8C /* taxi_places.hpp in Headers */,
|
||||
3DBD7C0E24251BF000ED9FE8 /* rb_ads.hpp in Headers */,
|
||||
BB1956E71F543D7C003ECE6C /* locals_api.hpp in Headers */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
|
@ -523,38 +584,49 @@
|
|||
files = (
|
||||
3D18DC4222956DFA00A583A6 /* promo_api.cpp in Sources */,
|
||||
349CFD0B2045720000569949 /* maxim_api.cpp in Sources */,
|
||||
3DBD7C1424251BF000ED9FE8 /* facebook_ads.cpp in Sources */,
|
||||
3DFEBFA41EFBFC2300317D5C /* yandex_tests.cpp in Sources */,
|
||||
3D1775A72318198700F8889C /* promo_catalog_types.cpp in Sources */,
|
||||
3D452AEF1EE6D202009EAB9B /* google_tests.cpp in Sources */,
|
||||
3D452AF01EE6D202009EAB9B /* mopub_tests.cpp in Sources */,
|
||||
3D18DC3422953FF600A583A6 /* rutaxi_tests.cpp in Sources */,
|
||||
3DBD7C0924251BF000ED9FE8 /* ads_utils.cpp in Sources */,
|
||||
3DBD7C0824251BF000ED9FE8 /* skyeng_ads.cpp in Sources */,
|
||||
3DBD7BFF24251BF000ED9FE8 /* bookmark_catalog_ads.cpp in Sources */,
|
||||
3D4E997F1FB439300025B48C /* utils.cpp in Sources */,
|
||||
3D15ACE8214AA1B000F725D5 /* rutaxi_api.cpp in Sources */,
|
||||
3430643C1E9FBCF500DC7665 /* mopub_ads.cpp in Sources */,
|
||||
3DBD7B9824112DE100ED9FE8 /* freenow_api.cpp in Sources */,
|
||||
3DBD7C0C24251BF000ED9FE8 /* tinkoff_allairlines_ads.cpp in Sources */,
|
||||
45C380772094C5B400C18D81 /* partners.cpp in Sources */,
|
||||
346E88961E9D087400D4CE9B /* ads_base.cpp in Sources */,
|
||||
3DBD7C1E24251C1100ED9FE8 /* tinkoff_insurance_tests.cpp in Sources */,
|
||||
3D4E997D1FB439260025B48C /* booking_availability_params.cpp in Sources */,
|
||||
3DCD415320DAB33700143533 /* booking_block_params.cpp in Sources */,
|
||||
F6B536421DA520E40067EEA5 /* uber_api.cpp in Sources */,
|
||||
F6539537207FBED70057B97C /* taxi_places_loader.cpp in Sources */,
|
||||
4566605020D91FEE0085E8C1 /* megafon_countries.cpp in Sources */,
|
||||
3DBD7C1024251BF000ED9FE8 /* ads_engine.cpp in Sources */,
|
||||
3DFEBF9B1EFBFC1500317D5C /* taxi_engine.cpp in Sources */,
|
||||
346E889B1E9D087400D4CE9B /* rb_ads.cpp in Sources */,
|
||||
3DBD7C0F24251BF000ED9FE8 /* mopub_ads.cpp in Sources */,
|
||||
3DF01C2D20652463005DDF8C /* taxi_places.cpp in Sources */,
|
||||
3DBC1C541E4B14920016897F /* facebook_ads.cpp in Sources */,
|
||||
3D452AF31EE6D20D009EAB9B /* google_ads.cpp in Sources */,
|
||||
346E88981E9D087400D4CE9B /* ads_engine.cpp in Sources */,
|
||||
3DBD7C0724251BF000ED9FE8 /* mts_ads.cpp in Sources */,
|
||||
F67E75251DB8F06F00D6741F /* opentable_api.cpp in Sources */,
|
||||
3DBD7C1F24251C1100ED9FE8 /* mts_tests.cpp in Sources */,
|
||||
45BABC33229812830060FA53 /* downloader_promo.cpp in Sources */,
|
||||
3D18DC4422956E0900A583A6 /* promo_tests.cpp in Sources */,
|
||||
3DBD7C2324251C1100ED9FE8 /* tinkoff_airlines_tests.cpp in Sources */,
|
||||
BB1956E61F543D7C003ECE6C /* locals_api.cpp in Sources */,
|
||||
3DBD7B9B24112DEA00ED9FE8 /* freenow_tests.cpp in Sources */,
|
||||
3DBD7C0524251BF000ED9FE8 /* rb_ads.cpp in Sources */,
|
||||
3DBD7C2124251C1100ED9FE8 /* skyeng_tests.cpp in Sources */,
|
||||
3DBD7C1324251BF000ED9FE8 /* ads_base.cpp in Sources */,
|
||||
3DBD7C2224251C1100ED9FE8 /* bookmark_catalog_ads_tests.cpp in Sources */,
|
||||
3DBD7C1724251BF000ED9FE8 /* tinkoff_insurance_ads.cpp in Sources */,
|
||||
3DFEBFA31EFBFC2300317D5C /* taxi_engine_tests.cpp in Sources */,
|
||||
F6B536401DA520E40067EEA5 /* booking_api.cpp in Sources */,
|
||||
3D47B29A1F054C89000828D2 /* taxi_base.cpp in Sources */,
|
||||
349CFD0D2045720700569949 /* maxim_tests.cpp in Sources */,
|
||||
3DFEBF9E1EFBFC1500317D5C /* yandex_api.cpp in Sources */,
|
||||
3DBD7C1624251BF000ED9FE8 /* google_ads.cpp in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue