diff --git a/iphone/Maps/Classes/CustomAlert/AlertController/MWMAlertViewController.h b/iphone/Maps/Classes/CustomAlert/AlertController/MWMAlertViewController.h index d6fec4867f..7fb71bb6bf 100644 --- a/iphone/Maps/Classes/CustomAlert/AlertController/MWMAlertViewController.h +++ b/iphone/Maps/Classes/CustomAlert/AlertController/MWMAlertViewController.h @@ -8,7 +8,6 @@ @property(weak, nonatomic, readonly) UIViewController * _Null_unspecified ownerViewController; - (nonnull instancetype)initWithViewController:(nonnull UIViewController *)viewController; -- (void)presentRoutingMigrationAlertWithOkBlock:(nonnull MWMVoidBlock)okBlock; - (void)presentRateAlert; - (void)presentPoint2PointAlertWithOkBlock:(nonnull MWMVoidBlock)okBlock needToRebuild:(BOOL)needToRebuild; @@ -18,7 +17,6 @@ - (void)presentLocationServiceNotSupportedAlert; - (void)presentLocationNotFoundAlertWithOkBlock:(nonnull MWMVoidBlock)okBlock; - (void)presentNoConnectionAlert; -- (void)presentMigrationProhibitedAlert; - (void)presentDeleteMapProhibitedAlert; - (void)presentUnsavedEditsAlertWithOkBlock:(nonnull MWMVoidBlock)okBlock; - (void)presentNoWiFiAlertWithOkBlock:(nullable MWMVoidBlock)okBlock andCancelBlock:(nullable MWMVoidBlock)cancelBlock; diff --git a/iphone/Maps/Classes/CustomAlert/AlertController/MWMAlertViewController.mm b/iphone/Maps/Classes/CustomAlert/AlertController/MWMAlertViewController.mm index b97f9c721e..c4d008f848 100644 --- a/iphone/Maps/Classes/CustomAlert/AlertController/MWMAlertViewController.mm +++ b/iphone/Maps/Classes/CustomAlert/AlertController/MWMAlertViewController.mm @@ -73,7 +73,6 @@ static NSString * const kAlertControllerNibIdentifier = @"MWMAlertViewController } - (void)presentNoConnectionAlert { [self displayAlert:[MWMAlert noConnectionAlert]]; } -- (void)presentMigrationProhibitedAlert { [self displayAlert:[MWMAlert migrationProhibitedAlert]]; } - (void)presentDeleteMapProhibitedAlert { [self displayAlert:[MWMAlert deleteMapProhibitedAlert]]; } - (void)presentUnsavedEditsAlertWithOkBlock:(nonnull MWMVoidBlock)okBlock { @@ -97,11 +96,6 @@ static NSString * const kAlertControllerNibIdentifier = @"MWMAlertViewController [self displayAlert:[MWMAlert invalidUserNameOrPasswordAlert]]; } -- (void)presentRoutingMigrationAlertWithOkBlock:(MWMVoidBlock)okBlock -{ - [self displayAlert:[MWMAlert routingMigrationAlertWithOkBlock:okBlock]]; -} - - (void)presentDownloaderAlertWithCountries:(storage::CountriesSet const &)countries code:(routing::RouterResultCode)code cancelBlock:(MWMVoidBlock)cancelBlock diff --git a/iphone/Maps/Classes/CustomAlert/BaseAlert/MWMAlert.h b/iphone/Maps/Classes/CustomAlert/BaseAlert/MWMAlert.h index 813bcc2eee..205a33c043 100644 --- a/iphone/Maps/Classes/CustomAlert/BaseAlert/MWMAlert.h +++ b/iphone/Maps/Classes/CustomAlert/BaseAlert/MWMAlert.h @@ -3,14 +3,12 @@ @property(weak, nonatomic) MWMAlertViewController * alertController; -+ (MWMAlert *)routingMigrationAlertWithOkBlock:(MWMVoidBlock)okBlock; + (MWMAlert *)rateAlert; + (MWMAlert *)locationAlertWithCancelBlock:(MWMVoidBlock)cancelBlock; + (MWMAlert *)routingDisclaimerAlertWithOkBlock:(MWMVoidBlock)block; + (MWMAlert *)disabledLocationAlert; + (MWMAlert *)noWiFiAlertWithOkBlock:(MWMVoidBlock)okBlock andCancelBlock:(MWMVoidBlock)cancelBlock; + (MWMAlert *)noConnectionAlert; -+ (MWMAlert *)migrationProhibitedAlert; + (MWMAlert *)deleteMapProhibitedAlert; + (MWMAlert *)unsavedEditsAlertWithOkBlock:(MWMVoidBlock)okBlock; + (MWMAlert *)locationServiceNotSupportedAlert; diff --git a/iphone/Maps/Classes/CustomAlert/BaseAlert/MWMAlert.mm b/iphone/Maps/Classes/CustomAlert/BaseAlert/MWMAlert.mm index 357256e700..b25266b8ad 100644 --- a/iphone/Maps/Classes/CustomAlert/BaseAlert/MWMAlert.mm +++ b/iphone/Maps/Classes/CustomAlert/BaseAlert/MWMAlert.mm @@ -36,7 +36,6 @@ } + (MWMAlert *)noConnectionAlert { return [MWMDefaultAlert noConnectionAlert]; } -+ (MWMAlert *)migrationProhibitedAlert { return [MWMDefaultAlert migrationProhibitedAlert]; } + (MWMAlert *)deleteMapProhibitedAlert { return [MWMDefaultAlert deleteMapProhibitedAlert]; } + (MWMAlert *)unsavedEditsAlertWithOkBlock:(MWMVoidBlock)okBlock { @@ -48,11 +47,6 @@ return [MWMDefaultAlert locationServiceNotSupportedAlert]; } -+ (MWMAlert *)routingMigrationAlertWithOkBlock:(MWMVoidBlock)okBlock -{ - return [MWMDefaultAlert routingMigrationAlertWithOkBlock:okBlock]; -} - + (MWMAlert *)downloaderAlertWithAbsentCountries:(storage::CountriesSet const &)countries code:(routing::RouterResultCode)code cancelBlock:(MWMVoidBlock)cancelBlock diff --git a/iphone/Maps/Classes/CustomAlert/DefaultAlert/MWMDefaultAlert.h b/iphone/Maps/Classes/CustomAlert/DefaultAlert/MWMDefaultAlert.h index 763b419681..b2cae7df20 100644 --- a/iphone/Maps/Classes/CustomAlert/DefaultAlert/MWMDefaultAlert.h +++ b/iphone/Maps/Classes/CustomAlert/DefaultAlert/MWMDefaultAlert.h @@ -19,7 +19,6 @@ + (instancetype)disabledLocationAlert; + (instancetype)noWiFiAlertWithOkBlock:(MWMVoidBlock)okBlock andCancelBlock:(MWMVoidBlock)cancelBlock; + (instancetype)noConnectionAlert; -+ (instancetype)migrationProhibitedAlert; + (instancetype)deleteMapProhibitedAlert; + (instancetype)unsavedEditsAlertWithOkBlock:(MWMVoidBlock)okBlock; + (instancetype)locationServiceNotSupportedAlert; @@ -31,7 +30,6 @@ + (instancetype)downloaderInternalErrorAlertWithOkBlock:(MWMVoidBlock)okBlock cancelBlock:(MWMVoidBlock)cancelBlock; + (instancetype)downloaderNeedUpdateAlertWithOkBlock:(MWMVoidBlock)okBlock; -+ (instancetype)routingMigrationAlertWithOkBlock:(MWMVoidBlock)okBlock; + (instancetype)resetChangesAlertWithBlock:(MWMVoidBlock)block; + (instancetype)deleteFeatureAlertWithBlock:(MWMVoidBlock)block; + (instancetype)personalInfoWarningAlertWithBlock:(MWMVoidBlock)block; diff --git a/iphone/Maps/Classes/CustomAlert/DefaultAlert/MWMDefaultAlert.mm b/iphone/Maps/Classes/CustomAlert/DefaultAlert/MWMDefaultAlert.mm index 675061d9de..57cfda6540 100644 --- a/iphone/Maps/Classes/CustomAlert/DefaultAlert/MWMDefaultAlert.mm +++ b/iphone/Maps/Classes/CustomAlert/DefaultAlert/MWMDefaultAlert.mm @@ -88,18 +88,6 @@ static NSString * const kDefaultAlertNibName = @"MWMDefaultAlert"; return alert; } -+ (instancetype)migrationProhibitedAlert -{ - MWMDefaultAlert * alert = [self defaultAlertWithTitle:L(@"no_migration_during_navigation") - message:nil - rightButtonTitle:L(@"ok") - leftButtonTitle:nil - rightButtonAction:nil - statisticsEvent:@"Migration Prohibited Alert"]; - [alert setNeedsCloseAlertAfterEnterBackground]; - return alert; -} - + (instancetype)deleteMapProhibitedAlert { MWMDefaultAlert * alert = @@ -350,17 +338,6 @@ static NSString * const kDefaultAlertNibName = @"MWMDefaultAlert"; return alert; } -+ (instancetype)routingMigrationAlertWithOkBlock:(MWMVoidBlock)okBlock -{ - MWMDefaultAlert * alert = [self defaultAlertWithTitle:L(@"downloader_update_maps") - message:L(@"downloader_mwm_migration_dialog") - rightButtonTitle:L(@"ok") - leftButtonTitle:L(@"cancel") - rightButtonAction:okBlock - statisticsEvent:@"Routing Need Migration Alert"]; - return alert; -} - + (instancetype)resetChangesAlertWithBlock:(MWMVoidBlock)block { MWMDefaultAlert * alert = [self defaultAlertWithTitle:L(@"editor_reset_edits_message") diff --git a/iphone/Maps/Classes/CustomViews/MapViewControls/MWMMapViewControlsManager.mm b/iphone/Maps/Classes/CustomViews/MapViewControls/MWMMapViewControlsManager.mm index e2e72d5352..10cf397317 100644 --- a/iphone/Maps/Classes/CustomViews/MapViewControls/MWMMapViewControlsManager.mm +++ b/iphone/Maps/Classes/CustomViews/MapViewControls/MWMMapViewControlsManager.mm @@ -174,26 +174,7 @@ extern NSString * const kAlohalyticsTapEventKey; - (void)actionDownloadMaps:(MWMMapDownloaderMode)mode { - MapViewController * ownerController = self.ownerController; - if (platform::migrate::NeedMigrate()) - { - if ([MWMRouter isRoutingActive]) - { - [Statistics logEvent:kStatDownloaderMigrationProhibitedDialogue - withParameters:@{kStatFrom : kStatDownloader}]; - [[MWMAlertViewController activeAlertController] presentMigrationProhibitedAlert]; - } - else - { - [Statistics logEvent:kStatDownloaderMigrationDialogue - withParameters:@{kStatFrom : kStatDownloader}]; - [ownerController openMigration]; - } - } - else - { - [ownerController openMapsDownloader:mode]; - } + [self.ownerController openMapsDownloader:mode]; } - (void)didFinishAddingPlace diff --git a/iphone/Maps/Classes/MapViewController.h b/iphone/Maps/Classes/MapViewController.h index 7f0077c51e..22813f4cb6 100644 --- a/iphone/Maps/Classes/MapViewController.h +++ b/iphone/Maps/Classes/MapViewController.h @@ -25,7 +25,6 @@ - (void)performAction:(NSString *)action; -- (void)openMigration; - (void)openBookmarks; - (void)openMapsDownloader:(MWMMapDownloaderMode)mode; - (void)openEditor; diff --git a/iphone/Maps/Classes/MapViewController.mm b/iphone/Maps/Classes/MapViewController.mm index 05d2e0c313..9cb019ed78 100644 --- a/iphone/Maps/Classes/MapViewController.mm +++ b/iphone/Maps/Classes/MapViewController.mm @@ -47,7 +47,6 @@ typedef NS_ENUM(NSUInteger, UserTouchesAction) { namespace { NSString * const kDownloaderSegue = @"Map2MapDownloaderSegue"; -NSString * const kMigrationSegue = @"Map2MigrationSegue"; NSString * const kEditorSegue = @"Map2EditorSegue"; NSString * const kUDViralAlertWasShown = @"ViralAlertWasShown"; NSString * const kPP2BookmarkEditingSegue = @"PP2BookmarkEditing"; @@ -332,11 +331,6 @@ NSString * const kHotelFacilitiesSegue = @"Map2FacilitiesSegue"; { case Framework::DoAfterUpdate::Nothing: break; - - case Framework::DoAfterUpdate::Migrate: - [self openMigration]; - break; - case Framework::DoAfterUpdate::AutoupdateMaps: case Framework::DoAfterUpdate::AskForUpdateMaps: [self presentViewController:[MWMAutoupdateController instanceWithPurpose:todo] animated:YES completion:nil]; @@ -423,7 +417,6 @@ NSString * const kHotelFacilitiesSegue = @"Map2FacilitiesSegue"; #pragma mark - Open controllers -- (void)openMigration { [self performSegueWithIdentifier:kMigrationSegue sender:self]; } - (void)openBookmarks { [self.navigationController pushViewController:[[MWMBookmarksTabViewController alloc] init] diff --git a/iphone/Maps/Classes/MapsAppDelegate.mm b/iphone/Maps/Classes/MapsAppDelegate.mm index c18ded999e..f5cf041488 100644 --- a/iphone/Maps/Classes/MapsAppDelegate.mm +++ b/iphone/Maps/Classes/MapsAppDelegate.mm @@ -643,7 +643,7 @@ continueUserActivity:(NSUserActivity *)userActivity auto & s = GetFramework().GetStorage(); storage::Storage::UpdateInfo updateInfo{}; s.GetUpdateInfo(s.GetRootId(), updateInfo); - return updateInfo.m_numberOfMwmFilesToUpdate + (platform::migrate::NeedMigrate() ? 1 : 0); + return updateInfo.m_numberOfMwmFilesToUpdate; } #pragma mark - MWMFrameworkStorageObserver diff --git a/iphone/Maps/Classes/Widgets/MWMMapDownloadDialog.mm b/iphone/Maps/Classes/Widgets/MWMMapDownloadDialog.mm index 7d9f02ca93..88bac210aa 100644 --- a/iphone/Maps/Classes/Widgets/MWMMapDownloadDialog.mm +++ b/iphone/Maps/Classes/Widgets/MWMMapDownloadDialog.mm @@ -37,7 +37,7 @@ BOOL canAutoDownload(storage::CountryId const &countryId) { auto const &countryInfoGetter = GetFramework().GetCountryInfoGetter(); if (countryId != countryInfoGetter.GetRegionCountryId(lastLocation.mercator)) return NO; - return !platform::migrate::NeedMigrate(); + return YES; } promo::DownloaderPromo::Banner getPromoBanner(std::string const &mwmId) { @@ -121,7 +121,7 @@ using namespace storage; } self.node.text = @(nodeAttrs.m_nodeLocalName.c_str()); self.node.textColor = [UIColor blackPrimaryText]; - self.nodeSize.hidden = platform::migrate::NeedMigrate(); + self.nodeSize.hidden = NO; self.nodeSize.textColor = [UIColor blackSecondaryText]; self.nodeSize.text = formattedSize(nodeAttrs.m_mwmSize); @@ -427,24 +427,16 @@ using namespace storage; } - (IBAction)downloadAction { - MapViewController *controller = self.controller; - if (platform::migrate::NeedMigrate()) { - [Statistics logEvent:kStatDownloaderMigrationDialogue withParameters:@{kStatFrom: kStatMap}]; - [controller openMigration]; - } else { - [Statistics logEvent:kStatDownloaderMapAction - withParameters:@{ - kStatAction: kStatDownload, - kStatIsAuto: kStatNo, - kStatFrom: kStatMap, - kStatScenario: kStatDownload - }]; - [MWMStorage downloadNode:m_countryId - onSuccess:^{ - [self showInQueue]; - } - onCancel:nil]; - } + [Statistics logEvent:kStatDownloaderMapAction + withParameters:@{ + kStatAction: kStatDownload, + kStatIsAuto: kStatNo, + kStatFrom: kStatMap, + kStatScenario: kStatDownload + }]; + [MWMStorage downloadNode:m_countryId + onSuccess:^{ [self showInQueue]; } + onCancel:nil]; } #pragma mark - Properties diff --git a/iphone/Maps/Common/Statistics/StatisticsStrings.h b/iphone/Maps/Common/Statistics/StatisticsStrings.h index fba1c05429..bb59c914cf 100644 --- a/iphone/Maps/Common/Statistics/StatisticsStrings.h +++ b/iphone/Maps/Common/Statistics/StatisticsStrings.h @@ -146,11 +146,6 @@ static NSString * const kStatDownloaderDialog = @"Downloader dialog"; static NSString * const kStatDownloaderDownloadCancel = @"Downloader_Download_cancel"; static NSString * const kStatDownloaderMapAction = @"Downloader_Map_action"; static NSString * const kStatDownloaderMapError = @"Downloader_Map_error"; -static NSString * const kStatDownloaderMigrationCompleted = @"Downloader_Migration_completed"; -static NSString * const kStatDownloaderMigrationDialogue = @"Downloader_Migration_dialogue"; -static NSString * const kStatDownloaderMigrationError = @"Downloader_Migration_error"; -static NSString * const kStatDownloaderMigrationProhibitedDialogue = @"Downloader_Migration_Prohibited_dialogue"; -static NSString * const kStatDownloaderMigrationStarted = @"Downloader_Migration_started"; static NSString * const kStatDownloaderOnStartScreenAutoDownload = @"Downloader_OnStartScreen_auto_download"; static NSString * const kStatDownloaderOnStartScreenCancelDownload = @"Downloader_OnStartScreen_cancel_download"; static NSString * const kStatDownloaderOnStartScreenError = @"Downloader_OnStartScreen_error"; @@ -261,7 +256,6 @@ static NSString * const kStatMapsmeInAppSuggestionShown = @"MapsMe_InAppSuggesti static NSString * const kStatMaxim = @"Maxim"; static NSString * const kStatMegafon = @"Megafon"; static NSString * const kStatMenu = @"menu"; -static NSString * const kStatMigrationBig2SmallMWM = @"Big mwms to small mwms migration counter"; static NSString * const kStatMiles = @"Miles"; static NSString * const kStatMobile = @"mobile"; static NSString * const kStatMobileInternet = @"Mobile Internet"; diff --git a/iphone/Maps/Core/Framework/MWMFrameworkHelper.h b/iphone/Maps/Core/Framework/MWMFrameworkHelper.h index f0d7adc4bb..7f1e96bdb7 100644 --- a/iphone/Maps/Core/Framework/MWMFrameworkHelper.h +++ b/iphone/Maps/Core/Framework/MWMFrameworkHelper.h @@ -32,7 +32,6 @@ NS_SWIFT_NAME(FrameworkHelper) + (void)switchMyPositionMode; + (void)stopLocationFollow; + (NSArray *)obtainLastSearchQueries; -+ (BOOL)needUpdateMaps; + (void)rotateMap:(double)azimuth animated:(BOOL)isAnimated; + (void)updatePositionArrowOffset:(BOOL)useDefault offset:(int)offsetY; diff --git a/iphone/Maps/Core/Framework/MWMFrameworkHelper.mm b/iphone/Maps/Core/Framework/MWMFrameworkHelper.mm index 87b8aadfcd..b8d0d856a7 100644 --- a/iphone/Maps/Core/Framework/MWMFrameworkHelper.mm +++ b/iphone/Maps/Core/Framework/MWMFrameworkHelper.mm @@ -172,11 +172,6 @@ extern NSString * const kAlohalyticsTapEventKey; GetFramework().StopLocationFollow(); } -+ (BOOL)needUpdateMaps -{ - return platform::migrate::NeedMigrate(); -} - + (void)rotateMap:(double)azimuth animated:(BOOL)isAnimated { GetFramework().Rotate(azimuth, isAnimated); } diff --git a/iphone/Maps/Core/Routing/MWMRouter.mm b/iphone/Maps/Core/Routing/MWMRouter.mm index 5d5048aa98..a239dde864 100644 --- a/iphone/Maps/Core/Routing/MWMRouter.mm +++ b/iphone/Maps/Core/Routing/MWMRouter.mm @@ -724,15 +724,7 @@ void logPointEvent(MWMRoutePoint * point, NSString * eventType) countries:(storage::CountriesSet const &)countries { MWMAlertViewController * activeAlertController = [MWMAlertViewController activeAlertController]; - if (platform::migrate::NeedMigrate()) - { - [activeAlertController presentRoutingMigrationAlertWithOkBlock:^{ - [Statistics logEvent:kStatDownloaderMigrationDialogue - withParameters:@{kStatFrom : kStatRouting}]; - [[MapViewController sharedController] openMigration]; - }]; - } - else if (!countries.empty()) + if (!countries.empty()) { [activeAlertController presentDownloaderAlertWithCountries:countries code:code diff --git a/iphone/Maps/Maps.xcodeproj/project.pbxproj b/iphone/Maps/Maps.xcodeproj/project.pbxproj index 9bf32facc5..72aaeea68f 100644 --- a/iphone/Maps/Maps.xcodeproj/project.pbxproj +++ b/iphone/Maps/Maps.xcodeproj/project.pbxproj @@ -465,9 +465,6 @@ 4A300ED51C6DCFD400140018 /* countries-strings in Resources */ = {isa = PBXBuildFile; fileRef = 4A300ED31C6DCFD400140018 /* countries-strings */; }; 56C74C391C74A3BC00B71B9F /* MWMInputEmailValidator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 34ABA62F1C2D58F300FE1BEC /* MWMInputEmailValidator.mm */; }; 56EE14D11FE804550036F20C /* libtransit.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 56EE14D21FE804550036F20C /* libtransit.a */; }; - 671182E41C7F0DD800CB8177 /* WorldCoasts_obsolete.mwm in Resources */ = {isa = PBXBuildFile; fileRef = 671182E01C7F0DD400CB8177 /* WorldCoasts_obsolete.mwm */; }; - 671182E51C7F0DDB00CB8177 /* packed_polygons_obsolete.bin in Resources */ = {isa = PBXBuildFile; fileRef = 671182DF1C7F0DD400CB8177 /* packed_polygons_obsolete.bin */; }; - 671182E61C7F0DDD00CB8177 /* countries_obsolete.txt in Resources */ = {isa = PBXBuildFile; fileRef = 671182DE1C7F0DD400CB8177 /* countries_obsolete.txt */; }; 671E78D31E6A423300B2859B /* librouting_common.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 671E78D21E6A423300B2859B /* librouting_common.a */; }; 6741A9421BF340DE002C974C /* sound-strings in Resources */ = {isa = PBXBuildFile; fileRef = 5605022E1B6211E100169CAD /* sound-strings */; }; 6741A9451BF340DE002C974C /* classificator.txt in Resources */ = {isa = PBXBuildFile; fileRef = EE026F0511D6AC0D00645242 /* classificator.txt */; }; @@ -749,8 +746,6 @@ F6E2FE2B1E097BA00083EBEC /* MWMStreetEditorEditTableViewCell.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6E2FC841E097B9F0083EBEC /* MWMStreetEditorEditTableViewCell.mm */; }; F6E2FE2E1E097BA00083EBEC /* MWMStreetEditorEditTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6E2FC851E097B9F0083EBEC /* MWMStreetEditorEditTableViewCell.xib */; }; F6E2FE311E097BA00083EBEC /* MWMStreetEditorViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6E2FC871E097B9F0083EBEC /* MWMStreetEditorViewController.mm */; }; - F6E2FE3A1E097BA00083EBEC /* MWMMigrationView.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6E2FC8C1E097B9F0083EBEC /* MWMMigrationView.mm */; }; - F6E2FE3D1E097BA00083EBEC /* MWMMigrationViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6E2FC8E1E097B9F0083EBEC /* MWMMigrationViewController.mm */; }; F6E2FE431E097BA00083EBEC /* MWMDirectionView.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6E2FC951E097B9F0083EBEC /* MWMDirectionView.mm */; }; F6E2FE461E097BA00083EBEC /* MWMDirectionView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6E2FC961E097B9F0083EBEC /* MWMDirectionView.xib */; }; F6E2FE491E097BA00083EBEC /* MWMPlacePageData.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6E2FC981E097B9F0083EBEC /* MWMPlacePageData.mm */; }; @@ -1597,9 +1592,6 @@ 5605022E1B6211E100169CAD /* sound-strings */ = {isa = PBXFileReference; lastKnownFileType = folder; name = "sound-strings"; path = "../../data/sound-strings"; sourceTree = ""; }; 56EE14D21FE804550036F20C /* libtransit.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libtransit.a; sourceTree = BUILT_PRODUCTS_DIR; }; 58E5736C23FC4E77509C9946 /* Pods_MAPS_ME.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_MAPS_ME.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 671182DE1C7F0DD400CB8177 /* countries_obsolete.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = countries_obsolete.txt; path = ../../data/countries_obsolete.txt; sourceTree = ""; }; - 671182DF1C7F0DD400CB8177 /* packed_polygons_obsolete.bin */ = {isa = PBXFileReference; lastKnownFileType = archive.macbinary; name = packed_polygons_obsolete.bin; path = ../../data/packed_polygons_obsolete.bin; sourceTree = ""; }; - 671182E01C7F0DD400CB8177 /* WorldCoasts_obsolete.mwm */ = {isa = PBXFileReference; lastKnownFileType = file; name = WorldCoasts_obsolete.mwm; path = ../../data/WorldCoasts_obsolete.mwm; sourceTree = ""; }; 671E78D21E6A423300B2859B /* librouting_common.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = librouting_common.a; path = "../../../omim-build/xcode/Debug-iphonesimulator/librouting_common.a"; sourceTree = ""; }; 6741AA5D1BF340DE002C974C /* maps.me dbg.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "maps.me dbg.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 6741AAA21BF356B9002C974C /* libagg.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libagg.a; path = "../../../omim-xcode-build/Debug/libagg.a"; sourceTree = ""; }; @@ -1971,10 +1963,6 @@ F6E2FC851E097B9F0083EBEC /* MWMStreetEditorEditTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MWMStreetEditorEditTableViewCell.xib; sourceTree = ""; }; F6E2FC861E097B9F0083EBEC /* MWMStreetEditorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMStreetEditorViewController.h; sourceTree = ""; }; F6E2FC871E097B9F0083EBEC /* MWMStreetEditorViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MWMStreetEditorViewController.mm; sourceTree = ""; }; - F6E2FC8B1E097B9F0083EBEC /* MWMMigrationView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMMigrationView.h; sourceTree = ""; }; - F6E2FC8C1E097B9F0083EBEC /* MWMMigrationView.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MWMMigrationView.mm; sourceTree = ""; }; - F6E2FC8D1E097B9F0083EBEC /* MWMMigrationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMMigrationViewController.h; sourceTree = ""; }; - F6E2FC8E1E097B9F0083EBEC /* MWMMigrationViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MWMMigrationViewController.mm; sourceTree = ""; }; F6E2FC941E097B9F0083EBEC /* MWMDirectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMDirectionView.h; sourceTree = ""; }; F6E2FC951E097B9F0083EBEC /* MWMDirectionView.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; lineEnding = 0; path = MWMDirectionView.mm; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; }; F6E2FC961E097B9F0083EBEC /* MWMDirectionView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MWMDirectionView.xib; sourceTree = ""; }; @@ -4126,7 +4114,6 @@ F6E2FBFC1E097B9F0083EBEC /* Downloader */, F6E2FC291E097B9F0083EBEC /* EditBookmark */, F6E2FC321E097B9F0083EBEC /* Editor */, - F6E2FC8A1E097B9F0083EBEC /* Migration */, F6E2FC8F1E097B9F0083EBEC /* PlacePage */, 3DB1C56F22D5DCF20097EC4C /* Promo */, 343029191F87BBF300D0A07C /* Reviews */, @@ -4332,17 +4319,6 @@ path = Street; sourceTree = ""; }; - F6E2FC8A1E097B9F0083EBEC /* Migration */ = { - isa = PBXGroup; - children = ( - F6E2FC8B1E097B9F0083EBEC /* MWMMigrationView.h */, - F6E2FC8C1E097B9F0083EBEC /* MWMMigrationView.mm */, - F6E2FC8D1E097B9F0083EBEC /* MWMMigrationViewController.h */, - F6E2FC8E1E097B9F0083EBEC /* MWMMigrationViewController.mm */, - ); - path = Migration; - sourceTree = ""; - }; F6E2FC8F1E097B9F0083EBEC /* PlacePage */ = { isa = PBXGroup; children = ( @@ -4711,7 +4687,6 @@ EE026F0511D6AC0D00645242 /* classificator.txt */, 452FCA3A1B6A3DF7007019AB /* colors.txt */, 97A5967E19B9CD47007A963F /* copyright.html */, - 671182DE1C7F0DD400CB8177 /* countries_obsolete.txt */, FA46DA2B12D4166E00968C36 /* countries.txt */, 4A23D1561B8B4DD700D4EB6F /* drules_proto_clear.bin */, 4A00DBDE1AB704C400113624 /* drules_proto_dark.bin */, @@ -4725,7 +4700,6 @@ 450703081E9E6CF000E8C029 /* local_ads_symbols.txt */, 3495433C1EB22D9600F08F73 /* MPAdBrowserController.xib */, F623DA6A1C9C2731006A3436 /* opening_hours_how_to_edit.html */, - 671182DF1C7F0DD400CB8177 /* packed_polygons_obsolete.bin */, FA85F632145DDDC20090E1A0 /* packed_polygons.bin */, 451950391B7A3E070085DA05 /* patterns.txt */, 3DF9C22A207CC14A00DA0793 /* taxi_places */, @@ -4750,7 +4724,6 @@ F642D1221F0F9D1D005E3C25 /* ugc_types.csv */, EE583CBA12F773F00042CBE3 /* unicode_blocks.txt */, FAFF42291347F101009BBB14 /* World.mwm */, - 671182E01C7F0DD400CB8177 /* WorldCoasts_obsolete.mwm */, FA459EB314327AF700B5BB3C /* WorldCoasts.mwm */, ); name = "External Resources"; @@ -4949,7 +4922,6 @@ 6741A9711BF340DE002C974C /* copyright.html in Resources */, 4A300ED51C6DCFD400140018 /* countries-strings in Resources */, 6741A9491BF340DE002C974C /* countries.txt in Resources */, - 671182E61C7F0DDD00CB8177 /* countries_obsolete.txt in Resources */, 6B653B951C7F2DE4007BEFC5 /* cuisine-strings in Resources */, 347752931F7251C7000D46A3 /* UGCAddReviewTextCell.xib in Resources */, 6741A9871BF340DE002C974C /* drules_proto_clear.bin in Resources */, @@ -5098,7 +5070,6 @@ 47E6CB0C2178BA3600EA102B /* SearchBannerCell.xib in Resources */, 344532341F6FE5880059FBCC /* UGCSummaryRatingStarsCell.xib in Resources */, 6741A9761BF340DE002C974C /* packed_polygons.bin in Resources */, - 671182E51C7F0DDB00CB8177 /* packed_polygons_obsolete.bin in Resources */, 470A8A012136097000D72FBF /* SubwayTutorialBlur.xib in Resources */, 676507601C10559800830BB3 /* patterns.txt in Resources */, 6741A94A1BF340DE002C974C /* resources-6plus_clear in Resources */, @@ -5137,7 +5108,6 @@ 340E1EFE1E2F614400CE49BF /* Welcome.storyboard in Resources */, 6741A9521BF340DE002C974C /* World.mwm in Resources */, 6741A9751BF340DE002C974C /* WorldCoasts.mwm in Resources */, - 671182E41C7F0DD800CB8177 /* WorldCoasts_obsolete.mwm in Resources */, 470F5A5C2181DE7500754295 /* PaidRouteViewController.xib in Resources */, 346DB8371E5C4F6700E3123E /* GalleryViewController.xib in Resources */, ); @@ -5480,7 +5450,6 @@ 348A8DFB1F66775A00D83026 /* RatingViewSettings.swift in Sources */, 3472B5E1200F86C800DC6CD5 /* MWMEditorHelper.mm in Sources */, 47B06DF021B697230094CCAD /* MWMGeoTrackerCore.mm in Sources */, - F6E2FE3D1E097BA00083EBEC /* MWMMigrationViewController.mm in Sources */, F6E2FD501E097BA00083EBEC /* MWMMapDownloaderAdsTableViewCell.mm in Sources */, 4719A643219CB61D009F9AA7 /* BillingPendingTransaction.swift in Sources */, CD9AD96F2281DF3600EC174A /* CategoryInfo.swift in Sources */, @@ -5521,7 +5490,6 @@ B33D21B220DBCC5E00BAD749 /* MWMCatalogObserver.mm in Sources */, 34E776331F15FAC2003040B3 /* MWMPlacePageManagerHelper.mm in Sources */, F6E2FF361E097BA00083EBEC /* MWMSearchSuggestionCell.mm in Sources */, - F6E2FE3A1E097BA00083EBEC /* MWMMigrationView.mm in Sources */, 3472B5CF200F4A2B00DC6CD5 /* BackgroundFetchTask.swift in Sources */, 477219052243E79500E5B227 /* DrivingOptionsViewController.swift in Sources */, CDB4D4E4222E8FF600104869 /* CarPlayService.swift in Sources */, diff --git a/iphone/Maps/UI/Downloader/MWMBaseMapDownloaderViewController.mm b/iphone/Maps/UI/Downloader/MWMBaseMapDownloaderViewController.mm index 7883f7007a..b91cfce125 100644 --- a/iphone/Maps/UI/Downloader/MWMBaseMapDownloaderViewController.mm +++ b/iphone/Maps/UI/Downloader/MWMBaseMapDownloaderViewController.mm @@ -11,7 +11,6 @@ #import "MWMMapDownloaderPlaceTableViewCell.h" #import "MWMMapDownloaderSubplaceTableViewCell.h" #import "MWMMapDownloaderTableViewCell.h" -#import "MWMMigrationViewController.h" #import "MWMMyTarget.h" #import "MWMSegue.h" #import "MWMStorage.h" diff --git a/iphone/Maps/UI/Migration/MWMMigrationView.h b/iphone/Maps/UI/Migration/MWMMigrationView.h deleted file mode 100644 index 7576ca0656..0000000000 --- a/iphone/Maps/UI/Migration/MWMMigrationView.h +++ /dev/null @@ -1,19 +0,0 @@ -#import "MWMCircularProgress.h" - -enum class MWMMigrationViewState -{ - Default, - Processing, - ErrorNoConnection, - ErrorNoSpace -}; - -@interface MWMMigrationView : UIView - -@property (nonatomic) MWMMigrationViewState state; -@property (copy, nonatomic) NSString * nodeLocalName; -@property (weak, nonatomic) id delegate; - -- (void)setProgress:(CGFloat)progress; - -@end diff --git a/iphone/Maps/UI/Migration/MWMMigrationView.mm b/iphone/Maps/UI/Migration/MWMMigrationView.mm deleted file mode 100644 index c545b2fdb0..0000000000 --- a/iphone/Maps/UI/Migration/MWMMigrationView.mm +++ /dev/null @@ -1,127 +0,0 @@ -#import "MWMCommon.h" -#import "MWMMigrationView.h" - -@interface MWMMigrationView () - -@property (weak, nonatomic) IBOutlet UIImageView * image; -@property (weak, nonatomic) IBOutlet NSLayoutConstraint * imageMinHeight; -@property (weak, nonatomic) IBOutlet NSLayoutConstraint * imageHeight; - -@property (weak, nonatomic) IBOutlet UILabel * title; -@property (weak, nonatomic) IBOutlet NSLayoutConstraint * titleTopOffset; -@property (weak, nonatomic) IBOutlet NSLayoutConstraint * titleImageOffset; - -@property (weak, nonatomic) IBOutlet UILabel * text; -@property (weak, nonatomic) IBOutlet UILabel * info; - -@property (weak, nonatomic) IBOutlet UIButton * primaryButton; -@property (weak, nonatomic) IBOutlet UIButton * secondaryButton; -@property (weak, nonatomic) IBOutlet UIView * spinnerView; - -@property (nonatomic) MWMCircularProgress * spinner; - -@end - -@implementation MWMMigrationView - -- (void)awakeFromNib -{ - [super awakeFromNib]; - self.state = MWMMigrationViewState::Default; - self.secondaryButton.titleLabel.textAlignment = NSTextAlignmentCenter; -} - -- (void)layoutSubviews -{ - [super layoutSubviews]; - self.title.preferredMaxLayoutWidth = self.title.width; - self.text.preferredMaxLayoutWidth = self.text.width; - self.info.preferredMaxLayoutWidth = self.info.width; - [super layoutSubviews]; -} - -- (void)setFrame:(CGRect)frame -{ - [self updateForSize:frame.size]; - super.frame = frame; -} - -- (void)updateForSize:(CGSize)size -{ - BOOL const hideImage = (self.imageHeight.multiplier * size.height <= self.imageMinHeight.constant); - self.titleImageOffset.priority = hideImage ? UILayoutPriorityDefaultLow : UILayoutPriorityDefaultHigh; - self.image.hidden = hideImage; - [self layoutIfNeeded]; -} - -- (void)configDefaultState -{ - [self stopSpinner]; - self.info.hidden = YES; - self.info.textColor = [UIColor blackHintText]; - self.primaryButton.enabled = YES; - self.secondaryButton.enabled = YES; - self.primaryButton.hidden = NO; - self.secondaryButton.hidden = NO; -} - -- (void)startSpinner -{ - self.spinnerView.hidden = NO; - self.spinner = [MWMCircularProgress downloaderProgressForParentView:self.spinnerView]; - self.spinner.delegate = self.delegate; - [self.spinner setInvertColor:YES]; - self.spinner.state = MWMCircularProgressStateSpinner; -} - -- (void)stopSpinner -{ - self.spinnerView.hidden = YES; - self.spinner = nil; -} - -- (void)setProgress:(CGFloat)progress -{ - self.spinner.progress = progress; -} - -#pragma mark - Properties - -- (void)setState:(MWMMigrationViewState)state -{ - [self layoutIfNeeded]; - [self configDefaultState]; - switch (state) - { - case MWMMigrationViewState::Default: - self.primaryButton.hidden = NO; - self.secondaryButton.hidden = NO; - break; - case MWMMigrationViewState::Processing: - self.info.hidden = NO; - self.info.text = [NSString stringWithFormat:@"%@ %@", L(@"downloader_downloading"), self.nodeLocalName]; - [self startSpinner]; - self.primaryButton.enabled = NO; - self.primaryButton.hidden = YES; - self.secondaryButton.hidden = YES; - break; - case MWMMigrationViewState::ErrorNoConnection: - self.info.hidden = NO; - self.info.textColor = [UIColor red]; - self.info.text = L(@"common_check_internet_connection_dialog"); - self.primaryButton.hidden = YES; - self.secondaryButton.hidden = YES; - break; - case MWMMigrationViewState::ErrorNoSpace: - self.info.hidden = NO; - self.info.textColor = [UIColor red]; - self.info.text = L(@"migration_no_space_message"); - self.primaryButton.hidden = YES; - self.secondaryButton.hidden = YES; - break; - } - _state = state; - [UIView animateWithDuration:kDefaultAnimationDuration animations:^{ [self layoutIfNeeded]; }]; -} - -@end diff --git a/iphone/Maps/UI/Migration/MWMMigrationViewController.h b/iphone/Maps/UI/Migration/MWMMigrationViewController.h deleted file mode 100644 index 6d7ddc5e94..0000000000 --- a/iphone/Maps/UI/Migration/MWMMigrationViewController.h +++ /dev/null @@ -1,5 +0,0 @@ -#import "MWMViewController.h" - -@interface MWMMigrationViewController : MWMViewController - -@end diff --git a/iphone/Maps/UI/Migration/MWMMigrationViewController.mm b/iphone/Maps/UI/Migration/MWMMigrationViewController.mm deleted file mode 100644 index 62c07af347..0000000000 --- a/iphone/Maps/UI/Migration/MWMMigrationViewController.mm +++ /dev/null @@ -1,171 +0,0 @@ -#import "MWMAlertViewController.h" -#import "MWMLocationManager.h" -#import "MWMMapDownloaderViewController.h" -#import "MWMMigrationView.h" -#import "MWMMigrationViewController.h" -#import "MWMFrameworkHelper.h" -#import "Statistics.h" - -#include "Framework.h" - -using namespace storage; - -@interface MWMMigrationViewController () - -@end - -@implementation MWMMigrationViewController -{ - CountryId m_countryId; -} - -- (void)viewDidLoad -{ - [super viewDidLoad]; - m_countryId = kInvalidCountryId; - [self configNavBar]; - [self checkState]; - static_cast(self.view).delegate = self; -} - -- (void)configNavBar -{ - self.title = L(@"download_maps"); -} - -- (void)checkState -{ - if (!GetFramework().IsEnoughSpaceForMigrate()) - [self setState:MWMMigrationViewState::ErrorNoSpace]; - else if (!Platform::IsConnected()) - [self setState:MWMMigrationViewState::ErrorNoConnection]; - else - [self setState:MWMMigrationViewState::Default]; -} - -- (void)performLimitedMigration:(BOOL)limited -{ - [Statistics logEvent:kStatDownloaderMigrationStarted - withParameters:@{kStatType : limited ? kStatCurrentMap : kStatAllMaps}]; - auto & f = GetFramework(); - - ms::LatLon position = MercatorBounds::ToLatLon(f.GetViewportCenter()); - CLLocation * lastLocation = [MWMLocationManager lastLocation]; - if (lastLocation) - position = ms::LatLon(lastLocation.coordinate.latitude, lastLocation.coordinate.longitude); - - auto migrate = ^ - { - GetFramework().Migrate(!limited); - MWMMapDownloaderViewController * dvc = [self.storyboard - instantiateViewControllerWithIdentifier:@"MWMMapDownloaderViewController"]; - [dvc setParentCountryId:@(GetFramework().GetStorage().GetRootId().c_str()) - mode:MWMMapDownloaderModeDownloaded]; - NSMutableArray *viewControllers = [NSMutableArray arrayWithArray:self.navigationController.viewControllers]; - [viewControllers removeLastObject]; - [viewControllers addObject:dvc]; - [self.navigationController setViewControllers:viewControllers animated:YES]; - [Statistics logEvent:kStatDownloaderMigrationCompleted]; - }; - - auto onStatusChanged = [self, migrate](CountryId const & countryId) { - if (m_countryId == kInvalidCountryId || m_countryId != countryId) - return; - auto & f = GetFramework(); - auto s = f.GetStorage().GetPrefetchStorage(); - NodeStatuses nodeStatuses{}; - s->GetNodeStatuses(countryId, nodeStatuses); - switch (nodeStatuses.m_status) - { - case NodeStatus::OnDisk: migrate(); break; - case NodeStatus::Undefined: - case NodeStatus::Error: [self showError:nodeStatuses.m_error countryId:countryId]; break; - default: break; - } - }; - - auto onProgressChanged = [self](CountryId const & countryId, - LocalAndRemoteSize const & progress) { - MWMMigrationView * view = static_cast(self.view); - [view setProgress:static_cast(progress.first) / progress.second]; - }; - - [MWMFrameworkHelper checkConnectionAndPerformAction:^{ - self->m_countryId = f.PreMigrate(position, onStatusChanged, onProgressChanged); - if (self->m_countryId != kInvalidCountryId) - [self setState:MWMMigrationViewState::Processing]; - else - migrate(); - } cancelAction:nil]; -} - -- (void)showError:(NodeErrorCode)errorCode countryId:(CountryId const &)countryId -{ - [self setState:MWMMigrationViewState::Default]; - MWMAlertViewController * avc = [MWMAlertViewController activeAlertController]; - auto const retryBlock = ^ - { - GetFramework().GetStorage().GetPrefetchStorage()->RetryDownloadNode(self->m_countryId); - [self setState:MWMMigrationViewState::Processing]; - }; - auto const cancelBlock = ^ - { - GetFramework().GetStorage().GetPrefetchStorage()->CancelDownloadNode(self->m_countryId); - }; - switch (errorCode) - { - case NodeErrorCode::NoError: - break; - case NodeErrorCode::UnknownError: - [Statistics logEvent:kStatDownloaderMigrationError withParameters:@{kStatType : kStatUnknownError}]; - [avc presentDownloaderInternalErrorAlertWithOkBlock:retryBlock cancelBlock:cancelBlock]; - break; - case NodeErrorCode::OutOfMemFailed: - [Statistics logEvent:kStatDownloaderMigrationError withParameters:@{kStatType : kStatNoSpace}]; - [avc presentDownloaderNotEnoughSpaceAlert]; - break; - case NodeErrorCode::NoInetConnection: - [Statistics logEvent:kStatDownloaderMigrationError withParameters:@{kStatType : kStatNoConnection}]; - [avc presentDownloaderNoConnectionAlertWithOkBlock:retryBlock cancelBlock:cancelBlock]; - break; - } -} - -- (void)setState:(MWMMigrationViewState)state -{ - MWMMigrationView * migrationView = static_cast(self.view); - if (state == MWMMigrationViewState::Processing) - { - NodeAttrs nodeAttrs; - GetFramework().GetStorage().GetPrefetchStorage()->GetNodeAttrs(m_countryId, nodeAttrs); - migrationView.nodeLocalName = @(nodeAttrs.m_nodeLocalName.c_str()); - self.navigationItem.leftBarButtonItem.enabled = NO; - } - else - { - self.navigationItem.leftBarButtonItem.enabled = YES; - } - migrationView.state = state; -} - -#pragma mark - MWMCircularProgressProtocol - -- (void)progressButtonPressed:(MWMCircularProgress *)progress -{ - GetFramework().GetStorage().GetPrefetchStorage()->CancelDownloadNode(m_countryId); - [self setState:MWMMigrationViewState::Default]; -} - -#pragma mark - Actions - -- (IBAction)primaryAction -{ - [self performLimitedMigration:NO]; -} - -- (IBAction)secondaryAction -{ - [self performLimitedMigration:YES]; -} - -@end diff --git a/iphone/Maps/UI/Storyboard/Main.storyboard b/iphone/Maps/UI/Storyboard/Main.storyboard index 0b611ac6f8..c280f3cd45 100644 --- a/iphone/Maps/UI/Storyboard/Main.storyboard +++ b/iphone/Maps/UI/Storyboard/Main.storyboard @@ -128,7 +128,6 @@ - @@ -1227,216 +1226,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -1485,12 +1274,10 @@ - - diff --git a/xcode/indexer/indexer.xcodeproj/project.pbxproj b/xcode/indexer/indexer.xcodeproj/project.pbxproj index 81846e2206..2ecb580918 100644 --- a/xcode/indexer/indexer.xcodeproj/project.pbxproj +++ b/xcode/indexer/indexer.xcodeproj/project.pbxproj @@ -35,7 +35,6 @@ 3496ABA91DC1FA9E00C5DDBA /* categories.txt in Resources */ = {isa = PBXBuildFile; fileRef = 3496ABA41DC1FA9E00C5DDBA /* categories.txt */; }; 3496ABAA1DC1FA9E00C5DDBA /* countries_meta.txt in Resources */ = {isa = PBXBuildFile; fileRef = 3496ABA51DC1FA9E00C5DDBA /* countries_meta.txt */; }; 3496ABAB1DC1FA9E00C5DDBA /* countries_names.txt in Resources */ = {isa = PBXBuildFile; fileRef = 3496ABA61DC1FA9E00C5DDBA /* countries_names.txt */; }; - 3496ABAC1DC1FA9E00C5DDBA /* countries_obsolete.txt in Resources */ = {isa = PBXBuildFile; fileRef = 3496ABA71DC1FA9E00C5DDBA /* countries_obsolete.txt */; }; 3496ABAD1DC1FA9E00C5DDBA /* countries.txt in Resources */ = {isa = PBXBuildFile; fileRef = 3496ABA81DC1FA9E00C5DDBA /* countries.txt */; }; 3496ABAF1DC1FAC900C5DDBA /* minsk-pass.mwm in Resources */ = {isa = PBXBuildFile; fileRef = 3496ABAE1DC1FAC900C5DDBA /* minsk-pass.mwm */; }; 391C0C8322BD2551003DC252 /* feature_to_osm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 391C0C8122BD2551003DC252 /* feature_to_osm.cpp */; }; @@ -252,7 +251,6 @@ 3496ABA41DC1FA9E00C5DDBA /* categories.txt */ = {isa = PBXFileReference; lastKnownFileType = text; name = categories.txt; path = ../../data/categories.txt; sourceTree = ""; }; 3496ABA51DC1FA9E00C5DDBA /* countries_meta.txt */ = {isa = PBXFileReference; lastKnownFileType = text; name = countries_meta.txt; path = ../../data/countries_meta.txt; sourceTree = ""; }; 3496ABA61DC1FA9E00C5DDBA /* countries_names.txt */ = {isa = PBXFileReference; lastKnownFileType = text; name = countries_names.txt; path = ../../data/countries_names.txt; sourceTree = ""; }; - 3496ABA71DC1FA9E00C5DDBA /* countries_obsolete.txt */ = {isa = PBXFileReference; lastKnownFileType = text; name = countries_obsolete.txt; path = ../../data/countries_obsolete.txt; sourceTree = ""; }; 3496ABA81DC1FA9E00C5DDBA /* countries.txt */ = {isa = PBXFileReference; lastKnownFileType = text; name = countries.txt; path = ../../data/countries.txt; sourceTree = ""; }; 3496ABAE1DC1FAC900C5DDBA /* minsk-pass.mwm */ = {isa = PBXFileReference; lastKnownFileType = file; name = "minsk-pass.mwm"; path = "../../data/minsk-pass.mwm"; sourceTree = ""; }; 34AF87D11DBE540700E5E7DC /* common-debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "common-debug.xcconfig"; path = "../common-debug.xcconfig"; sourceTree = ""; }; @@ -488,7 +486,6 @@ 4052928E21496D2B00D821F1 /* categories_cuisines.txt */, 3496ABA51DC1FA9E00C5DDBA /* countries_meta.txt */, 3496ABA61DC1FA9E00C5DDBA /* countries_names.txt */, - 3496ABA71DC1FA9E00C5DDBA /* countries_obsolete.txt */, 3496ABA81DC1FA9E00C5DDBA /* countries.txt */, 3496ABA21DC1FA7200C5DDBA /* editor.config */, 3496AB981DC1FA5200C5DDBA /* drules_proto_clear.bin */, @@ -909,6 +906,7 @@ developmentRegion = English; hasScannedForEncodings = 0; knownRegions = ( + English, en, ); mainGroup = 675340911A3F53CB00A0A8C3; @@ -931,7 +929,6 @@ 3496ABA91DC1FA9E00C5DDBA /* categories.txt in Resources */, 3496ABAA1DC1FA9E00C5DDBA /* countries_meta.txt in Resources */, 3496ABAB1DC1FA9E00C5DDBA /* countries_names.txt in Resources */, - 3496ABAC1DC1FA9E00C5DDBA /* countries_obsolete.txt in Resources */, 3496ABAD1DC1FA9E00C5DDBA /* countries.txt in Resources */, 3496ABA31DC1FA7200C5DDBA /* editor.config in Resources */, 3496AB9D1DC1FA5200C5DDBA /* drules_proto_clear.bin in Resources */, diff --git a/xcode/platform/platform.xcodeproj/project.pbxproj b/xcode/platform/platform.xcodeproj/project.pbxproj index 080bed8ff6..213bac84c5 100644 --- a/xcode/platform/platform.xcodeproj/project.pbxproj +++ b/xcode/platform/platform.xcodeproj/project.pbxproj @@ -42,7 +42,6 @@ 56EB1EDE1C6B6E6C0022D831 /* mwm_traits.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 56EB1EDA1C6B6E6C0022D831 /* mwm_traits.cpp */; }; 56EB1EDF1C6B6E6C0022D831 /* mwm_traits.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 56EB1EDB1C6B6E6C0022D831 /* mwm_traits.hpp */; }; 670E8C761BB318AB00094197 /* platform_ios.mm in Sources */ = {isa = PBXBuildFile; fileRef = 670E8C741BB318AB00094197 /* platform_ios.mm */; }; - 671182F31C80AC4200CB8177 /* WorldCoasts_obsolete.mwm in Resources */ = {isa = PBXBuildFile; fileRef = 671182F21C80AC3D00CB8177 /* WorldCoasts_obsolete.mwm */; }; 671C62061AE9014C00076BD0 /* measurement_utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 671C62041AE9014C00076BD0 /* measurement_utils.cpp */; }; 671C62071AE9014C00076BD0 /* measurement_utils.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 671C62051AE9014C00076BD0 /* measurement_utils.hpp */; }; 67247FFD1C60BD6500EDE56A /* writable_dir_changer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 67247FFB1C60BD6500EDE56A /* writable_dir_changer.cpp */; }; @@ -166,7 +165,6 @@ 56EB1EDA1C6B6E6C0022D831 /* mwm_traits.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mwm_traits.cpp; sourceTree = ""; }; 56EB1EDB1C6B6E6C0022D831 /* mwm_traits.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = mwm_traits.hpp; sourceTree = ""; }; 670E8C741BB318AB00094197 /* platform_ios.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = platform_ios.mm; sourceTree = ""; }; - 671182F21C80AC3D00CB8177 /* WorldCoasts_obsolete.mwm */ = {isa = PBXFileReference; lastKnownFileType = file; path = WorldCoasts_obsolete.mwm; sourceTree = ""; }; 671C62041AE9014C00076BD0 /* measurement_utils.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = measurement_utils.cpp; sourceTree = ""; }; 671C62051AE9014C00076BD0 /* measurement_utils.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = measurement_utils.hpp; sourceTree = ""; }; 67247FFB1C60BD6500EDE56A /* writable_dir_changer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = writable_dir_changer.cpp; sourceTree = ""; }; @@ -463,7 +461,6 @@ 678338A91C6DF4BD00FD6263 /* Resources */ = { isa = PBXGroup; children = ( - 671182F21C80AC3D00CB8177 /* WorldCoasts_obsolete.mwm */, 678338B01C6E016700FD6263 /* World.mwm */, 678338B11C6E016700FD6263 /* WorldCoasts.mwm */, 678338AB1C6DF50700FD6263 /* classificator.txt */, @@ -623,6 +620,7 @@ developmentRegion = English; hasScannedForEncodings = 0; knownRegions = ( + English, en, Base, ); @@ -645,7 +643,6 @@ files = ( 678338AD1C6DF51D00FD6263 /* classificator.txt in Resources */, 678338AE1C6DF51D00FD6263 /* minsk-pass.mwm in Resources */, - 671182F31C80AC4200CB8177 /* WorldCoasts_obsolete.mwm in Resources */, 678338B21C6E016F00FD6263 /* WorldCoasts.mwm in Resources */, 678338B31C6E017200FD6263 /* World.mwm in Resources */, ); diff --git a/xcode/qtMapsMe/qtMapsMe.xcodeproj/project.pbxproj b/xcode/qtMapsMe/qtMapsMe.xcodeproj/project.pbxproj index 3c4a0cafb8..c01ca5abc4 100644 --- a/xcode/qtMapsMe/qtMapsMe.xcodeproj/project.pbxproj +++ b/xcode/qtMapsMe/qtMapsMe.xcodeproj/project.pbxproj @@ -61,9 +61,6 @@ 670D05981B0CBD320013A7AC /* update_dialog.hpp in Sources */ = {isa = PBXBuildFile; fileRef = 675345841A404CB200A0A8C3 /* update_dialog.hpp */; }; 670D05991B0CBD5A0013A7AC /* draw_widget.hpp in Sources */ = {isa = PBXBuildFile; fileRef = 675345711A404CB200A0A8C3 /* draw_widget.hpp */; }; 670D059A1B0CBD5B0013A7AC /* mainwindow.hpp in Sources */ = {isa = PBXBuildFile; fileRef = 675345761A404CB200A0A8C3 /* mainwindow.hpp */; }; - 671182DB1C7F0D8C00CB8177 /* countries_obsolete.txt in Resources */ = {isa = PBXBuildFile; fileRef = 671182D81C7F0D8C00CB8177 /* countries_obsolete.txt */; }; - 671182DC1C7F0D8C00CB8177 /* packed_polygons_obsolete.bin in Resources */ = {isa = PBXBuildFile; fileRef = 671182D91C7F0D8C00CB8177 /* packed_polygons_obsolete.bin */; }; - 671182DD1C7F0D8C00CB8177 /* WorldCoasts_obsolete.mwm in Resources */ = {isa = PBXBuildFile; fileRef = 671182DA1C7F0D8C00CB8177 /* WorldCoasts_obsolete.mwm */; }; 671182F61C80E09A00CB8177 /* colors.txt in Resources */ = {isa = PBXBuildFile; fileRef = 671182F41C80E09A00CB8177 /* colors.txt */; }; 671182F71C80E09A00CB8177 /* patterns.txt in Resources */ = {isa = PBXBuildFile; fileRef = 671182F51C80E09A00CB8177 /* patterns.txt */; }; 6714E5E41BD13F67008AB603 /* drules_proto_clear.bin in CopyFiles */ = {isa = PBXBuildFile; fileRef = 6714E5DE1BD13F67008AB603 /* drules_proto_clear.bin */; }; @@ -283,9 +280,6 @@ 45B5B5A11CA422EE00D93E36 /* resources-xxhdpi_dark */ = {isa = PBXFileReference; lastKnownFileType = folder; path = "resources-xxhdpi_dark"; sourceTree = ""; }; 45D7ADA2210B519300160DE3 /* bookmark_dialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = bookmark_dialog.cpp; sourceTree = ""; }; 45D7ADA3210B519300160DE3 /* bookmark_dialog.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = bookmark_dialog.hpp; sourceTree = ""; }; - 671182D81C7F0D8C00CB8177 /* countries_obsolete.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = countries_obsolete.txt; sourceTree = ""; }; - 671182D91C7F0D8C00CB8177 /* packed_polygons_obsolete.bin */ = {isa = PBXFileReference; lastKnownFileType = archive.macbinary; path = packed_polygons_obsolete.bin; sourceTree = ""; }; - 671182DA1C7F0D8C00CB8177 /* WorldCoasts_obsolete.mwm */ = {isa = PBXFileReference; lastKnownFileType = file; path = WorldCoasts_obsolete.mwm; sourceTree = ""; }; 671182F41C80E09A00CB8177 /* colors.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = colors.txt; sourceTree = ""; }; 671182F51C80E09A00CB8177 /* patterns.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = patterns.txt; sourceTree = ""; }; 6714E5DE1BD13F67008AB603 /* drules_proto_clear.bin */ = {isa = PBXFileReference; lastKnownFileType = archive.macbinary; path = drules_proto_clear.bin; sourceTree = ""; }; @@ -568,9 +562,6 @@ 45B5B58E1CA4222300D93E36 /* countries-strings */, 671182F41C80E09A00CB8177 /* colors.txt */, 671182F51C80E09A00CB8177 /* patterns.txt */, - 671182D81C7F0D8C00CB8177 /* countries_obsolete.txt */, - 671182D91C7F0D8C00CB8177 /* packed_polygons_obsolete.bin */, - 671182DA1C7F0D8C00CB8177 /* WorldCoasts_obsolete.mwm */, 677A2DE71C0DDD7C00635A00 /* resources-default */, 6714E5DE1BD13F67008AB603 /* drules_proto_clear.bin */, 6714E5E01BD13F67008AB603 /* drules_proto_dark.bin */, @@ -750,16 +741,13 @@ 45B5B5A51CA422EE00D93E36 /* resources-xhdpi_dark in Resources */, 671182F71C80E09A00CB8177 /* patterns.txt in Resources */, 34FFD3081E9CEEA20010AD12 /* plus.png in Resources */, - 671182DD1C7F0D8C00CB8177 /* WorldCoasts_obsolete.mwm in Resources */, 671182F61C80E09A00CB8177 /* colors.txt in Resources */, 6714E6021BD14016008AB603 /* resources-mdpi_clear in Resources */, 45B5B5A31CA422EE00D93E36 /* resources-hdpi_dark in Resources */, 45B5B5A61CA422EE00D93E36 /* resources-xxhdpi_dark in Resources */, 45B5B59B1CA422C800D93E36 /* resources-xhdpi_clear in Resources */, - 671182DC1C7F0D8C00CB8177 /* packed_polygons_obsolete.bin in Resources */, 45B5B5981CA422C800D93E36 /* resources-6plus_clear in Resources */, 450703071E9E6C7100E8C029 /* local_ads_symbols.txt in Resources */, - 671182DB1C7F0D8C00CB8177 /* countries_obsolete.txt in Resources */, 67F4D3F51CC5400900C5D9BB /* cuisine-strings in Resources */, ); runOnlyForDeploymentPostprocessing = 0; diff --git a/xcode/routing/routing.xcodeproj/project.pbxproj b/xcode/routing/routing.xcodeproj/project.pbxproj index 9965dc1585..d55f7a0e72 100644 --- a/xcode/routing/routing.xcodeproj/project.pbxproj +++ b/xcode/routing/routing.xcodeproj/project.pbxproj @@ -175,15 +175,12 @@ 56F0D74E1D896A5300045886 /* WorldCoasts.mwm in Resources */ = {isa = PBXBuildFile; fileRef = 67BD36021C69F513003AA26F /* WorldCoasts.mwm */; }; 56F0D74F1D896A5300045886 /* countries.txt in Resources */ = {isa = PBXBuildFile; fileRef = 67BD35FD1C69F4AC003AA26F /* countries.txt */; }; 56F0D7501D896A5300045886 /* packed_polygons.bin in Resources */ = {isa = PBXBuildFile; fileRef = 67BD35F91C69F474003AA26F /* packed_polygons.bin */; }; - 56F0D7511D896A5300045886 /* WorldCoasts_obsolete.mwm in Resources */ = {isa = PBXBuildFile; fileRef = 671182E91C7F0E1F00CB8177 /* WorldCoasts_obsolete.mwm */; }; 56F0D7521D896A5300045886 /* drules_proto_clear.bin in Resources */ = {isa = PBXBuildFile; fileRef = 6742AD571C68C7F6009CB89E /* drules_proto_clear.bin */; }; 56F0D7531D896A5300045886 /* drules_proto_dark.bin in Resources */ = {isa = PBXBuildFile; fileRef = 6742AD581C68C7F6009CB89E /* drules_proto_dark.bin */; }; 56F0D7541D896A5300045886 /* drules_proto_legacy.bin in Resources */ = {isa = PBXBuildFile; fileRef = 6742AD591C68C7F6009CB89E /* drules_proto_legacy.bin */; }; - 56F0D7551D896A5300045886 /* countries_obsolete.txt in Resources */ = {isa = PBXBuildFile; fileRef = 671182E71C7F0E1F00CB8177 /* countries_obsolete.txt */; }; 56F0D7561D896A5300045886 /* drules_proto-bw.bin in Resources */ = {isa = PBXBuildFile; fileRef = 6742AD5A1C68C7F6009CB89E /* drules_proto-bw.bin */; }; 56F0D7571D896A5300045886 /* drules_proto.bin in Resources */ = {isa = PBXBuildFile; fileRef = 6742AD5B1C68C7F6009CB89E /* drules_proto.bin */; }; 56F0D7581D896A5300045886 /* types.txt in Resources */ = {isa = PBXBuildFile; fileRef = 6742AD551C68C7C1009CB89E /* types.txt */; }; - 56F0D7591D896A5300045886 /* packed_polygons_obsolete.bin in Resources */ = {isa = PBXBuildFile; fileRef = 671182E81C7F0E1F00CB8177 /* packed_polygons_obsolete.bin */; }; 56F0D75A1D896A5300045886 /* classificator.txt in Resources */ = {isa = PBXBuildFile; fileRef = 6742AD531C68BB14009CB89E /* classificator.txt */; }; 56F0D75B1D896A5300045886 /* sound-strings in Resources */ = {isa = PBXBuildFile; fileRef = 6742AD611C68F747009CB89E /* sound-strings */; }; 56FA20471FBF23A90045DE78 /* cross_mwm_ids.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 56FA20461FBF23A90045DE78 /* cross_mwm_ids.hpp */; }; @@ -198,9 +195,6 @@ 670EE5731B664796001E8064 /* pedestrian_directions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 670EE56F1B664796001E8064 /* pedestrian_directions.cpp */; }; 670EE5741B664796001E8064 /* pedestrian_directions.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 670EE5701B664796001E8064 /* pedestrian_directions.hpp */; }; 670EE5751B664796001E8064 /* router.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 670EE5711B664796001E8064 /* router.cpp */; }; - 671182EA1C7F0E2100CB8177 /* WorldCoasts_obsolete.mwm in Resources */ = {isa = PBXBuildFile; fileRef = 671182E91C7F0E1F00CB8177 /* WorldCoasts_obsolete.mwm */; }; - 671182EC1C7F0E3200CB8177 /* packed_polygons_obsolete.bin in Resources */ = {isa = PBXBuildFile; fileRef = 671182E81C7F0E1F00CB8177 /* packed_polygons_obsolete.bin */; }; - 671182ED1C7F0E3500CB8177 /* countries_obsolete.txt in Resources */ = {isa = PBXBuildFile; fileRef = 671182E71C7F0E1F00CB8177 /* countries_obsolete.txt */; }; 671F58BD1B874EC80032311E /* followed_polyline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 671F58BB1B874EC80032311E /* followed_polyline.cpp */; }; 671F58BE1B874EC80032311E /* followed_polyline.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 671F58BC1B874EC80032311E /* followed_polyline.hpp */; }; 6741AA9C1BF35331002C974C /* turns_notification_manager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6741AA9A1BF35331002C974C /* turns_notification_manager.cpp */; }; @@ -479,9 +473,6 @@ 670EE56F1B664796001E8064 /* pedestrian_directions.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pedestrian_directions.cpp; sourceTree = ""; }; 670EE5701B664796001E8064 /* pedestrian_directions.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = pedestrian_directions.hpp; sourceTree = ""; }; 670EE5711B664796001E8064 /* router.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = router.cpp; sourceTree = ""; }; - 671182E71C7F0E1F00CB8177 /* countries_obsolete.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = countries_obsolete.txt; sourceTree = ""; }; - 671182E81C7F0E1F00CB8177 /* packed_polygons_obsolete.bin */ = {isa = PBXFileReference; lastKnownFileType = archive.macbinary; path = packed_polygons_obsolete.bin; sourceTree = ""; }; - 671182E91C7F0E1F00CB8177 /* WorldCoasts_obsolete.mwm */ = {isa = PBXFileReference; lastKnownFileType = file; path = WorldCoasts_obsolete.mwm; sourceTree = ""; }; 671F58BB1B874EC80032311E /* followed_polyline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = followed_polyline.cpp; sourceTree = ""; }; 671F58BC1B874EC80032311E /* followed_polyline.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = followed_polyline.hpp; sourceTree = ""; }; 6741AA9A1BF35331002C974C /* turns_notification_manager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = turns_notification_manager.cpp; sourceTree = ""; }; @@ -802,9 +793,6 @@ 6742AD511C68BAEE009CB89E /* Resources */ = { isa = PBXGroup; children = ( - 671182E71C7F0E1F00CB8177 /* countries_obsolete.txt */, - 671182E81C7F0E1F00CB8177 /* packed_polygons_obsolete.bin */, - 671182E91C7F0E1F00CB8177 /* WorldCoasts_obsolete.mwm */, 67BD36001C69F513003AA26F /* World.mwm */, 67BD36021C69F513003AA26F /* WorldCoasts.mwm */, 67BD35FD1C69F4AC003AA26F /* countries.txt */, @@ -1244,15 +1232,12 @@ 56F0D74E1D896A5300045886 /* WorldCoasts.mwm in Resources */, 56F0D74F1D896A5300045886 /* countries.txt in Resources */, 56F0D7501D896A5300045886 /* packed_polygons.bin in Resources */, - 56F0D7511D896A5300045886 /* WorldCoasts_obsolete.mwm in Resources */, 56F0D7521D896A5300045886 /* drules_proto_clear.bin in Resources */, 56F0D7531D896A5300045886 /* drules_proto_dark.bin in Resources */, 56F0D7541D896A5300045886 /* drules_proto_legacy.bin in Resources */, - 56F0D7551D896A5300045886 /* countries_obsolete.txt in Resources */, 56F0D7561D896A5300045886 /* drules_proto-bw.bin in Resources */, 56F0D7571D896A5300045886 /* drules_proto.bin in Resources */, 56F0D7581D896A5300045886 /* types.txt in Resources */, - 56F0D7591D896A5300045886 /* packed_polygons_obsolete.bin in Resources */, 56F0D75A1D896A5300045886 /* classificator.txt in Resources */, 56F0D75B1D896A5300045886 /* sound-strings in Resources */, ); @@ -1280,14 +1265,11 @@ 67BD36051C69F51C003AA26F /* WorldCoasts.mwm in Resources */, 67BD35FF1C69F4BC003AA26F /* countries.txt in Resources */, 67BD35FB1C69F49A003AA26F /* packed_polygons.bin in Resources */, - 671182EA1C7F0E2100CB8177 /* WorldCoasts_obsolete.mwm in Resources */, 67BD35F01C69F447003AA26F /* drules_proto_clear.bin in Resources */, 67BD35F11C69F447003AA26F /* drules_proto_dark.bin in Resources */, - 671182ED1C7F0E3500CB8177 /* countries_obsolete.txt in Resources */, 67BD35F31C69F447003AA26F /* drules_proto-bw.bin in Resources */, 67BD35F41C69F447003AA26F /* drules_proto.bin in Resources */, 67BD35F51C69F447003AA26F /* types.txt in Resources */, - 671182EC1C7F0E3200CB8177 /* packed_polygons_obsolete.bin in Resources */, 67BD35F61C69F447003AA26F /* classificator.txt in Resources */, 67BD35F71C69F447003AA26F /* sound-strings in Resources */, ); diff --git a/xcode/storage/storage.xcodeproj/project.pbxproj b/xcode/storage/storage.xcodeproj/project.pbxproj index d385f035aa..2422538216 100644 --- a/xcode/storage/storage.xcodeproj/project.pbxproj +++ b/xcode/storage/storage.xcodeproj/project.pbxproj @@ -52,12 +52,6 @@ 56FB436F2164A848002099B3 /* libshaders.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 56FB436E2164A848002099B3 /* libshaders.a */; }; 56FB43712164A8A1002099B3 /* libkml.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 56FB43702164A8A1002099B3 /* libkml.a */; }; 671182CE1C7E06B400CB8177 /* storage_3levels_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 671182CC1C7E069C00CB8177 /* storage_3levels_tests.cpp */; }; - 671182D21C7F0D5D00CB8177 /* WorldCoasts_obsolete.mwm in Resources */ = {isa = PBXBuildFile; fileRef = 671182D11C7F0D5400CB8177 /* WorldCoasts_obsolete.mwm */; }; - 671182D31C7F0D5D00CB8177 /* WorldCoasts_obsolete.mwm in Resources */ = {isa = PBXBuildFile; fileRef = 671182D11C7F0D5400CB8177 /* WorldCoasts_obsolete.mwm */; }; - 671182D41C7F0D6400CB8177 /* packed_polygons_obsolete.bin in Resources */ = {isa = PBXBuildFile; fileRef = 671182D01C7F0D5400CB8177 /* packed_polygons_obsolete.bin */; }; - 671182D51C7F0D6500CB8177 /* packed_polygons_obsolete.bin in Resources */ = {isa = PBXBuildFile; fileRef = 671182D01C7F0D5400CB8177 /* packed_polygons_obsolete.bin */; }; - 671182D61C7F0D6800CB8177 /* countries_obsolete.txt in Resources */ = {isa = PBXBuildFile; fileRef = 671182CF1C7F0D5400CB8177 /* countries_obsolete.txt */; }; - 671182D71C7F0D6900CB8177 /* countries_obsolete.txt in Resources */ = {isa = PBXBuildFile; fileRef = 671182CF1C7F0D5400CB8177 /* countries_obsolete.txt */; }; 67239C961CBBDB1700C530A8 /* download_calc_size_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 67239C941CBBDB0E00C530A8 /* download_calc_size_test.cpp */; }; 67247FCF1C60BA8A00EDE56A /* fake_map_files_downloader.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 67247FC51C60BA8A00EDE56A /* fake_map_files_downloader.hpp */; }; 67247FD41C60BA8A00EDE56A /* task_runner.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 67247FCA1C60BA8A00EDE56A /* task_runner.hpp */; }; @@ -244,9 +238,6 @@ 56FB436E2164A848002099B3 /* libshaders.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libshaders.a; sourceTree = BUILT_PRODUCTS_DIR; }; 56FB43702164A8A1002099B3 /* libkml.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libkml.a; sourceTree = BUILT_PRODUCTS_DIR; }; 671182CC1C7E069C00CB8177 /* storage_3levels_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = storage_3levels_tests.cpp; sourceTree = ""; }; - 671182CF1C7F0D5400CB8177 /* countries_obsolete.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = countries_obsolete.txt; sourceTree = ""; }; - 671182D01C7F0D5400CB8177 /* packed_polygons_obsolete.bin */ = {isa = PBXFileReference; lastKnownFileType = archive.macbinary; path = packed_polygons_obsolete.bin; sourceTree = ""; }; - 671182D11C7F0D5400CB8177 /* WorldCoasts_obsolete.mwm */ = {isa = PBXFileReference; lastKnownFileType = file; path = WorldCoasts_obsolete.mwm; sourceTree = ""; }; 67239C941CBBDB0E00C530A8 /* download_calc_size_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = download_calc_size_test.cpp; sourceTree = ""; }; 67247FC41C60BA8A00EDE56A /* fake_map_files_downloader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = fake_map_files_downloader.cpp; sourceTree = ""; }; 67247FC51C60BA8A00EDE56A /* fake_map_files_downloader.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = fake_map_files_downloader.hpp; sourceTree = ""; }; @@ -632,10 +623,7 @@ 678CB37F1CA5881B00E9118D /* editor.config */, 676109C81C99A941007C4E67 /* countries-strings */, F66D56A31EAE37B90081E883 /* countries_meta.txt */, - 671182CF1C7F0D5400CB8177 /* countries_obsolete.txt */, F66D56B11EAE385B0081E883 /* local_ads_symbols.txt */, - 671182D01C7F0D5400CB8177 /* packed_polygons_obsolete.bin */, - 671182D11C7F0D5400CB8177 /* WorldCoasts_obsolete.mwm */, 676C84151C63888200DC9603 /* packed_polygons.bin */, 676C83F91C63884300DC9603 /* categories.txt */, 4069AD9F21495A5A005EB75C /* categories_cuisines.txt */, @@ -803,15 +791,12 @@ 676109CA1C99A9D0007C4E67 /* countries-strings in Resources */, 678338E31C72460700FD6263 /* types.txt in Resources */, 678338E61C72460700FD6263 /* WorldCoasts.mwm in Resources */, - 671182D51C7F0D6500CB8177 /* packed_polygons_obsolete.bin in Resources */, 678338DA1C72460700FD6263 /* classificator.txt in Resources */, - 671182D31C7F0D5D00CB8177 /* WorldCoasts_obsolete.mwm in Resources */, 678338E01C72460700FD6263 /* drules_proto-bw.bin in Resources */, 678338DC1C72460700FD6263 /* countries.txt in Resources */, 678338D91C72460700FD6263 /* categories.txt in Resources */, 678338E21C72460700FD6263 /* patterns.txt in Resources */, 678338E11C72460700FD6263 /* drules_proto.bin in Resources */, - 671182D71C7F0D6900CB8177 /* countries_obsolete.txt in Resources */, 678338DD1C72460700FD6263 /* drules_proto_clear.bin in Resources */, 678338E41C72460700FD6263 /* World.mwm in Resources */, 678338DE1C72460700FD6263 /* drules_proto_dark.bin in Resources */, @@ -832,15 +817,12 @@ 67F90BF41C6A2B3100CD458E /* packed_polygons.bin in Resources */, 67F90BF51C6A2B3100CD458E /* categories.txt in Resources */, 67F90BF61C6A2B3100CD458E /* classificator.txt in Resources */, - 671182D41C7F0D6400CB8177 /* packed_polygons_obsolete.bin in Resources */, 67F90BF81C6A2B3100CD458E /* countries.txt in Resources */, - 671182D21C7F0D5D00CB8177 /* WorldCoasts_obsolete.mwm in Resources */, 67F90BF91C6A2B3100CD458E /* drules_proto_clear.bin in Resources */, 67F90BFA1C6A2B3100CD458E /* drules_proto_dark.bin in Resources */, 67F90BFC1C6A2B3100CD458E /* drules_proto-bw.bin in Resources */, 67F90BFD1C6A2B3100CD458E /* drules_proto.bin in Resources */, 67F90BFE1C6A2B3100CD458E /* patterns.txt in Resources */, - 671182D61C7F0D6800CB8177 /* countries_obsolete.txt in Resources */, 67F90BFF1C6A2B3100CD458E /* types.txt in Resources */, 67F90C001C6A2B3100CD458E /* World.mwm in Resources */, 67F90C021C6A2B3100CD458E /* WorldCoasts.mwm in Resources */,