diff --git a/iphone/Maps/3party/Fabric.framework/Fabric b/iphone/Maps/3party/Fabric.framework/Fabric deleted file mode 100755 index bfb04ac20a..0000000000 Binary files a/iphone/Maps/3party/Fabric.framework/Fabric and /dev/null differ diff --git a/iphone/Maps/3party/Fabric.framework/Headers/FABAttributes.h b/iphone/Maps/3party/Fabric.framework/Headers/FABAttributes.h deleted file mode 100644 index 3a9355a7c6..0000000000 --- a/iphone/Maps/3party/Fabric.framework/Headers/FABAttributes.h +++ /dev/null @@ -1,51 +0,0 @@ -// -// FABAttributes.h -// Fabric -// -// Copyright (C) 2015 Twitter, Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// - -#pragma once - -#define FAB_UNAVAILABLE(x) __attribute__((unavailable(x))) - -#if !__has_feature(nullability) - #define nonnull - #define nullable - #define _Nullable - #define _Nonnull -#endif - -#ifndef NS_ASSUME_NONNULL_BEGIN - #define NS_ASSUME_NONNULL_BEGIN -#endif - -#ifndef NS_ASSUME_NONNULL_END - #define NS_ASSUME_NONNULL_END -#endif - - -/** - * The following macros are defined here to provide - * backwards compatability. If you are still using - * them you should migrate to the native nullability - * macros. - */ -#define fab_nullable nullable -#define fab_nonnull nonnull -#define FAB_NONNULL __fab_nonnull -#define FAB_NULLABLE __fab_nullable -#define FAB_START_NONNULL NS_ASSUME_NONNULL_BEGIN -#define FAB_END_NONNULL NS_ASSUME_NONNULL_END diff --git a/iphone/Maps/3party/Fabric.framework/Headers/Fabric.h b/iphone/Maps/3party/Fabric.framework/Headers/Fabric.h deleted file mode 100644 index ecbdb53b84..0000000000 --- a/iphone/Maps/3party/Fabric.framework/Headers/Fabric.h +++ /dev/null @@ -1,82 +0,0 @@ -// -// Fabric.h -// Fabric -// -// Copyright (C) 2015 Twitter, Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// - -#import -#import "FABAttributes.h" - -NS_ASSUME_NONNULL_BEGIN - -#if TARGET_OS_IPHONE -#if __IPHONE_OS_VERSION_MIN_REQUIRED < 60000 - #error "Fabric's minimum iOS version is 6.0" -#endif -#else -#if __MAC_OS_X_VERSION_MIN_REQUIRED < 1070 - #error "Fabric's minimum OS X version is 10.7" -#endif -#endif - -/** - * Fabric Base. Coordinates configuration and starts all provided kits. - */ -@interface Fabric : NSObject - -/** - * Initialize Fabric and all provided kits. Call this method within your App Delegate's `application:didFinishLaunchingWithOptions:` and provide the kits you wish to use. - * - * For example, in Objective-C: - * - * `[Fabric with:@[[Crashlytics class], [Twitter class], [Digits class], [MoPub class]]];` - * - * Swift: - * - * `Fabric.with([Crashlytics.self(), Twitter.self(), Digits.self(), MoPub.self()])` - * - * Only the first call to this method is honored. Subsequent calls are no-ops. - * - * @param kitClasses An array of kit Class objects - * - * @return Returns the shared Fabric instance. In most cases this can be ignored. - */ -+ (instancetype)with:(NSArray *)kitClasses; - -/** - * Returns the Fabric singleton object. - */ -+ (instancetype)sharedSDK; - -/** - * This BOOL enables or disables debug logging, such as kit version information. The default value is NO. - */ -@property (nonatomic, assign) BOOL debug; - -/** - * Unavailable. Use `+sharedSDK` to retrieve the shared Fabric instance. - */ -- (id)init FAB_UNAVAILABLE("Use +sharedSDK to retrieve the shared Fabric instance."); - -/** - * Unavailable. Use `+sharedSDK` to retrieve the shared Fabric instance. - */ -+ (instancetype)new FAB_UNAVAILABLE("Use +sharedSDK to retrieve the shared Fabric instance."); - -@end - -NS_ASSUME_NONNULL_END - diff --git a/iphone/Maps/3party/Fabric.framework/Info.plist b/iphone/Maps/3party/Fabric.framework/Info.plist deleted file mode 100644 index 5664ef655c..0000000000 Binary files a/iphone/Maps/3party/Fabric.framework/Info.plist and /dev/null differ diff --git a/iphone/Maps/3party/Fabric.framework/Modules/module.modulemap b/iphone/Maps/3party/Fabric.framework/Modules/module.modulemap deleted file mode 100644 index 2a312239dd..0000000000 --- a/iphone/Maps/3party/Fabric.framework/Modules/module.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module Fabric { - umbrella header "Fabric.h" - - export * - module * { export * } -} \ No newline at end of file diff --git a/iphone/Maps/3party/Fabric.framework/run b/iphone/Maps/3party/Fabric.framework/run deleted file mode 100755 index 9058ea62c0..0000000000 --- a/iphone/Maps/3party/Fabric.framework/run +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh - -# run -# -# Copyright (c) 2015 Crashlytics. All rights reserved. - -# Figure out where we're being called from -DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) - -# Quote path in case of spaces or special chars -DIR="\"${DIR}" - -PATH_SEP="/" -VALIDATE_COMMAND="uploadDSYM\" $@ validate run-script" -UPLOAD_COMMAND="uploadDSYM\" $@ run-script" - -# Ensure params are as expected, run in sync mode to validate -eval $DIR$PATH_SEP$VALIDATE_COMMAND -return_code=$? - -if [[ $return_code != 0 ]]; then - exit $return_code -fi - -# Verification passed, upload dSYM in background to prevent Xcode from waiting -# Note: Validation is performed again before upload. -# Output can still be found in Console.app -eval $DIR$PATH_SEP$UPLOAD_COMMAND > /dev/null 2>&1 & diff --git a/iphone/Maps/3party/Fabric.framework/uploadDSYM b/iphone/Maps/3party/Fabric.framework/uploadDSYM deleted file mode 100755 index 9cb23e7ef5..0000000000 Binary files a/iphone/Maps/3party/Fabric.framework/uploadDSYM and /dev/null differ diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/Info.plist b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/Info.plist deleted file mode 100644 index 290d53438a..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/Info.plist +++ /dev/null @@ -1,24 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIconFile - - CFBundleIdentifier - com.google.${PRODUCT_NAME:rfc1034identifier} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - BNDL - CFBundleShortVersionString - 1.0 - CFBundleVersion - 1 - NSPrincipalClass - - - diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/Roboto-Bold.ttf b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/Roboto-Bold.ttf deleted file mode 100644 index 68822caf24..0000000000 Binary files a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/Roboto-Bold.ttf and /dev/null differ diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/ar.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/ar.lproj/GoogleSignIn.strings deleted file mode 100644 index d64f5593c8..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/ar.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "تسجيل الدخول"; - -/* Long form sign-in button text */ -"Sign in with Google" = "تسجيل الدخول باستخدام Google"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "تسجيل الدخول باستخدام Google"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "احصل على تطبيق Google المجاني وسجل الدخول إلى التطبيقات من خلال حساب Google. لا توجد حاجة لتذكر كلمات المرور."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "إلغاء"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "جلب"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/ca.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/ca.lproj/GoogleSignIn.strings deleted file mode 100644 index 05b1b6bdaf..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/ca.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "Inicia la sessió"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Inicia la sessió amb Google"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Inicia la sessió amb Google"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "Obteniu l'aplicació Google gratuïta i inicieu la sessió a les aplicacions amb el vostre compte de Google. D'aquesta manera, ja no haureu de recordar cap més contrasenya."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "Cancel·la"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "Obtén"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/cs.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/cs.lproj/GoogleSignIn.strings deleted file mode 100644 index c6db57c04b..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/cs.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "Přihlásit se"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Přihlásit se účtem Google"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Přihlašujte se účtem Google"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "Nainstalujte si zdarma aplikaci Google a přihlašujte se do aplikací pomocí účtu Google. Nebudete si už muset pamatovat spoustu hesel."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "Zrušit"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "Instalovat"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/da.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/da.lproj/GoogleSignIn.strings deleted file mode 100644 index 3fee26640a..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/da.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "Log ind"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Log ind med Google"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Log ind med Google"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "Hent den gratis Google-app, og log ind på apps med din Google-konto. Du slipper for at huske på adgangskoder."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "Annuller"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "Hent"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/de.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/de.lproj/GoogleSignIn.strings deleted file mode 100644 index b0cdd0f75b..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/de.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "Anmelden"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Über Google anmelden"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Über Google anmelden"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "Installieren Sie die kostenlose Google App und melden Sie sich mit Ihrem Google-Konto in Apps an. So müssen Sie sich keine Passwörter mehr merken."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "Abbrechen"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "Installieren"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/el.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/el.lproj/GoogleSignIn.strings deleted file mode 100644 index b4a38f0809..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/el.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "Σύνδεση"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Συνδεθείτε με το Google"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Συνδεθείτε με το Google"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "Αποκτήστε τη δωρεάν εφαρμογή Google και συνδεθείτε σε εφαρμογές με το Λογαριασμό σας Google. Δεν χρειάζεται να απομνημονεύετε κωδικούς πρόσβασης."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "Ακύρωση"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "Λήψη"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/en.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/en.lproj/GoogleSignIn.strings deleted file mode 100644 index 9bda41f2ba..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/en.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "Sign in"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Sign in with Google"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Sign in with Google"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "Get the free Google app and sign in to apps with your Google Account. No need to remember passwords."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "Cancel"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "Get"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/en_GB.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/en_GB.lproj/GoogleSignIn.strings deleted file mode 100644 index 9bda41f2ba..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/en_GB.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "Sign in"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Sign in with Google"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Sign in with Google"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "Get the free Google app and sign in to apps with your Google Account. No need to remember passwords."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "Cancel"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "Get"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/es.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/es.lproj/GoogleSignIn.strings deleted file mode 100644 index 3929fdf9e4..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/es.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "Iniciar sesión"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Iniciar sesión con Google"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Iniciar sesión con Google"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "Obtén la aplicación Google gratuita e inicia sesión en aplicaciones con tu cuenta de Google. No tendrás que recordar las contraseñas."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "Cancelar"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "Obtener"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/es_MX.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/es_MX.lproj/GoogleSignIn.strings deleted file mode 100644 index 12e6ab07f2..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/es_MX.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "Acceder"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Acceder con Google"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Acceder con Google"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "Obtén Google app y accede a aplicaciones con tu cuenta de Google. No hace falta recordar contraseñas."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "Cancelar"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "Obtener"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/fi.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/fi.lproj/GoogleSignIn.strings deleted file mode 100644 index fe94bdf984..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/fi.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "Kirjaudu sisään"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Kirjaudu Google-tilin tunnuksilla"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Kirjaudu Google-tilin tunnuksilla"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "Hanki ilmainen Google-sovellus ja kirjaudu sovelluksiin Google-tililläsi. Sinun ei tarvitse muistaa salasanoja."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "Peruuta"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "Hae"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/fr.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/fr.lproj/GoogleSignIn.strings deleted file mode 100644 index 2fa3d80f48..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/fr.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "Se connecter"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Se connecter avec Google"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Se connecter avec Google"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "Installez l'appli Google gratuite et connectez-vous à des applications avec votre compte Google. Plus besoin de vous souvenir de vos mots de passe."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "Annuler"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "Installer"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/google.png b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/google.png deleted file mode 100644 index 26f15cb31a..0000000000 Binary files a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/google.png and /dev/null differ diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/google@2x.png b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/google@2x.png deleted file mode 100644 index 26edd541c1..0000000000 Binary files a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/google@2x.png and /dev/null differ diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/google@3x.png b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/google@3x.png deleted file mode 100644 index d978ed26a2..0000000000 Binary files a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/google@3x.png and /dev/null differ diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/he.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/he.lproj/GoogleSignIn.strings deleted file mode 100644 index 941709080c..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/he.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "היכנס"; - -/* Long form sign-in button text */ -"Sign in with Google" = "היכנס באמצעות Google"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "כניסה באמצעות Google"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "התקן את Google app בחינם והיכנס אל אפליקציות באמצעות חשבון Google. לא תצטרך עוד לזכור סיסמאות."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "בטל"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "התקן"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/hr.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/hr.lproj/GoogleSignIn.strings deleted file mode 100644 index aa9f02653c..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/hr.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "Prijava"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Prijavite se putem Googlea"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Prijavite se putem Googlea"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "Preuzmite besplatnu aplikaciju Google i prijavljujte se na aplikacije svojim Google računom. Ne morate pamtiti zaporke."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "Odustani"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "Nabavi"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/hu.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/hu.lproj/GoogleSignIn.strings deleted file mode 100644 index 62118847c4..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/hu.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "Bejelentkezés"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Bejelentkezés Google-fiókkal"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Bejelentkezés Google-fiókkal"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "Telepítse az ingyenes Google alkalmazást, és jelentkezzen be az egyes termékekbe Google-fiókjával. Nem kell különböző jelszavakat megjegyeznie."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "Mégse"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "Telepítés"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/id.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/id.lproj/GoogleSignIn.strings deleted file mode 100644 index f79b81265a..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/id.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "Masuk"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Masuk dengan Google"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Masuk dengan Google"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "Dapatkan Google app gratis dan masuk ke aplikasi dengan Akun Google. Tidak perlu mengingat sandi."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "Batal"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "Ambil"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/it.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/it.lproj/GoogleSignIn.strings deleted file mode 100644 index 8ddd6a2f86..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/it.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "Accedi"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Accedi con Google"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Accedi con Google"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "Scarica gratis l'app Google app e accedi alle app con il tuo account Google: liberati dai vincoli delle password."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "Annulla"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "Scarica"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/ja.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/ja.lproj/GoogleSignIn.strings deleted file mode 100644 index fbe327ae9c..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/ja.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "ログイン"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Googleでログイン"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Googleでログイン"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "無料のGoogleアプリをインストールして、Googleアカウントでアプリにログインしよう。パスワードを覚えておく必要はありません。"; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "キャンセル"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "インストール"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/ko.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/ko.lproj/GoogleSignIn.strings deleted file mode 100644 index 4aceac2314..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/ko.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "로그인"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Google 계정으로 로그인"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Google 계정으로 로그인"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "무료 Google 앱을 다운로드하여 Google 계정으로 앱에 로그인하세요. 비밀번호를 기억할 필요가 없습니다."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "취소"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "설치"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/ms.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/ms.lproj/GoogleSignIn.strings deleted file mode 100644 index 466bb5995a..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/ms.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "Log masuk"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Log masuk dengan Google"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Log masuk dengan Google"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "Dapatkan apl Google percuma dan log masuk ke apl menggunakan Akaun Google anda. Tidak perlu mengingati kata laluan."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "Batal"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "Dapatkan"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/nb.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/nb.lproj/GoogleSignIn.strings deleted file mode 100644 index 13745204c9..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/nb.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "Logg på"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Logg på med Google"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Logg på med Google"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "Skaff deg den gratis Google-appen, og logg på apper med Google-kontoen din. Du trenger ikke å huske passord."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "Avbryt"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "Hent"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/nl.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/nl.lproj/GoogleSignIn.strings deleted file mode 100644 index 616d3e0dd3..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/nl.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "Inloggen"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Inloggen met Google"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Inloggen met Google"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "Installeer de gratis Google-app en log in bij apps met uw Google-account. U hoeft geen wachtwoorden te onthouden."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "Annuleren"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "Installeren"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/pl.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/pl.lproj/GoogleSignIn.strings deleted file mode 100644 index 478fcaef56..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/pl.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "Zaloguj się"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Zaloguj się przez Google"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Zaloguj się przez Google"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "Pobierz darmową aplikację Google i zaloguj się do aplikacji, używając konta Google. Nie musisz pamiętać haseł."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "Anuluj"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "Pobierz"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/pt.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/pt.lproj/GoogleSignIn.strings deleted file mode 100644 index 38b9e23e21..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/pt.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "Fazer login"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Fazer login com o Google"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Fazer login com o Google"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "Faça o download do Google app gratuitamente e faça login em aplicativos com sua Conta do Google. Não há necessidade de lembrar senhas."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "Cancelar"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "Instalar"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/pt_BR.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/pt_BR.lproj/GoogleSignIn.strings deleted file mode 100644 index 38b9e23e21..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/pt_BR.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "Fazer login"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Fazer login com o Google"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Fazer login com o Google"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "Faça o download do Google app gratuitamente e faça login em aplicativos com sua Conta do Google. Não há necessidade de lembrar senhas."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "Cancelar"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "Instalar"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/pt_PT.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/pt_PT.lproj/GoogleSignIn.strings deleted file mode 100644 index 7b6eb75196..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/pt_PT.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "Iniciar sessão"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Iniciar sessão com o Google"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Iniciar sessão com o Google"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "Obtenha a aplicação Google gratuita e inicie sessão nas aplicações com a sua Conta Google. Não precisa de memorizar palavras-passe."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "Cancelar"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "Obter"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/ro.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/ro.lproj/GoogleSignIn.strings deleted file mode 100644 index 2e616dea66..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/ro.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "Conectați-vă"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Conectați-vă cu Google"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Conectați-vă cu Google"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "Instalați aplicația Google gratuită și conectați-vă la aplicații folosind Contul Google. Nu mai trebuie să rețineți parolele."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "Anulați"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "Instalați"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/ru.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/ru.lproj/GoogleSignIn.strings deleted file mode 100644 index 39e6c1fbf7..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/ru.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "Войти"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Войти в аккаунт Google"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Надоело вводить пароль?"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "Установите бесплатное приложение Google и входите в другие мобильные программы, используя учетные данные своего аккаунта."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "Отмена"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "Установить"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/sk.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/sk.lproj/GoogleSignIn.strings deleted file mode 100644 index dc8f6f773e..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/sk.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "Prihlásiť sa"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Prihlásiť sa pomocou účtu Google"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Prihlásenie pomocou účtu Google"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "Nainštalujte si zdarma aplikáciu Google a prihlasujte sa do aplikácií pomocou účtu Google. Nebudete si už musieť pamätať rôzne heslá."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "Zrušiť"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "Inštalovať"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/sv.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/sv.lproj/GoogleSignIn.strings deleted file mode 100644 index 86171546c3..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/sv.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "Logga in"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Logga in med Google"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Logga in med Google"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "Hämta Google-appen utan kostnad och logga in i appar med ditt Google-konto. Du behöver inte komma ihåg en massa lösenord."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "Avbryt"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "Hämta"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/th.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/th.lproj/GoogleSignIn.strings deleted file mode 100644 index 30fd9039c3..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/th.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "ลงชื่อเข้าใช้"; - -/* Long form sign-in button text */ -"Sign in with Google" = "ลงชื่อเข้าใช้ด้วย Google"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "ลงชื่อเข้าใช้ด้วย Google"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "ติดตั้งแอป Google ฟรีและลงชื่อเข้าใช้แอปต่างๆ ด้วยบัญชี Google คุณไม่ต้องจำรหัสผ่านอีกแล้ว"; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "ยกเลิก"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "ติดตั้ง"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/tr.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/tr.lproj/GoogleSignIn.strings deleted file mode 100644 index c5723af742..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/tr.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "Oturum aç"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Google ile oturum aç"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Google ile oturum aç"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "Ücretsiz Google uygulamasını edinin ve uygulamalarda Google Hesabınızla oturum açın. Şifrelerinizi hatırlamanız gerekmez."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "İptal"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "Al"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/uk.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/uk.lproj/GoogleSignIn.strings deleted file mode 100644 index 320f6c7f12..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/uk.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "Увійти"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Увійти в обліковий запис Google"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Входьте в обліковий запис Google"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "Установіть безкоштовний додаток Google і входьте в обліковий запис Google у додатках. Не потрібно запам’ятовувати паролі."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "Скасувати"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "Установити"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/vi.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/vi.lproj/GoogleSignIn.strings deleted file mode 100644 index 5c22261db0..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/vi.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "Đăng nhập"; - -/* Long form sign-in button text */ -"Sign in with Google" = "Đăng nhập bằng Google"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "Đăng nhập bằng Google"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "Tải ứng dụng Google miễn phí và đăng nhập vào các ứng dụng bằng tài khoản Google của bạn. Không cần phải nhớ mật khẩu."; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "Hủy"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "Tải"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/zh_CN.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/zh_CN.lproj/GoogleSignIn.strings deleted file mode 100644 index f8ef77c2ae..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/zh_CN.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "登录"; - -/* Long form sign-in button text */ -"Sign in with Google" = "使用 Google 帐户登录"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "使用 Google 帐户登录"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "安装免费的“Google”应用后,您可以使用自己的 Google 帐户登录众多应用(无需记住众多密码)。"; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "取消"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "安装"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/zh_TW.lproj/GoogleSignIn.strings b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/zh_TW.lproj/GoogleSignIn.strings deleted file mode 100644 index c98c1f3942..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.bundle/zh_TW.lproj/GoogleSignIn.strings +++ /dev/null @@ -1,17 +0,0 @@ -/* Sign-in button text */ -"Sign in" = "登入"; - -/* Long form sign-in button text */ -"Sign in with Google" = "登入 Google 帳戶"; - -/* The title of the promotional prompt to install the Google app. */ -"PromoTitle" = "登入 Google 帳戶"; - -/* The body message of the promotional prompt to install the Google app. */ -"PromoMessage" = "只要安裝免費的 Google app,即可使用 Google 帳戶登入應用程式,而不必費心記住密碼。"; - -/* The cancel button on the promotional prompt to install the Google app. */ -"PromoActionCancel" = "取消"; - -/* The install button on the promotional prompt to install the Google app. */ -"PromoActionInstall" = "安裝"; diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.framework/GoogleSignIn b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.framework/GoogleSignIn deleted file mode 100644 index b6a52e1b48..0000000000 Binary files a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.framework/GoogleSignIn and /dev/null differ diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.framework/Headers/GIDAuthentication.h b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.framework/Headers/GIDAuthentication.h deleted file mode 100644 index 7ab00b8a7c..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.framework/Headers/GIDAuthentication.h +++ /dev/null @@ -1,72 +0,0 @@ -/* - * GIDAuthentication.h - * Google Sign-In iOS SDK - * - * Copyright 2014 Google Inc. - * - * Use of this SDK is subject to the Google APIs Terms of Service: - * https://developers.google.com/terms/ - */ - -#import - -@protocol GTMFetcherAuthorizationProtocol; -@class GIDAuthentication; - -// @relates GIDAuthentication -// -// The callback block that takes a GIDAuthentication, or an error if attempt to refresh was -// unsuccessful. -typedef void (^GIDAuthenticationHandler)(GIDAuthentication *authentication, NSError *error); - -// @relates GIDAuthentication -// -// The callback block that takes an access token, or an error if attempt to refresh was -// unsuccessful. -typedef void (^GIDAccessTokenHandler)(NSString *accessToken, NSError *error); - -// This class represents the OAuth 2.0 entities needed for sign-in. -@interface GIDAuthentication : NSObject - -// The client ID associated with the authentication. -@property(nonatomic, readonly) NSString *clientID; - -// The OAuth2 access token to access Google services. -@property(nonatomic, readonly) NSString *accessToken; - -// The estimated expiration date of the access token. -@property(nonatomic, readonly) NSDate *accessTokenExpirationDate; - -// The OAuth2 refresh token to exchange for new access tokens. -@property(nonatomic, readonly) NSString *refreshToken; - -// An OpenID Connect ID token that identifies the user. Send this token to your server to -// authenticate the user there. For more information on this topic, see -// https://developers.google.com/identity/sign-in/ios/backend-auth -@property(nonatomic, readonly) NSString *idToken; - -// The estimated expiration date of the ID token. -@property(nonatomic, readonly) NSDate *idTokenExpirationDate; - -// Gets a new authorizer for GTLService, GTMSessionFetcher, or GTMHTTPFetcher. -- (id)fetcherAuthorizer; - -// Get a valid access token and a valid ID token, refreshing them first if they have expired or are -// about to expire. -- (void)getTokensWithHandler:(GIDAuthenticationHandler)handler; - -// Refreshes the access token and the ID token using the refresh token. -- (void)refreshTokensWithHandler:(GIDAuthenticationHandler)handler; - -// Gets the access token, which may be a new one from the refresh token if the original has already -// expired or is about to expire. Deprecated: use |getTokensWithHandler:| to get access tokens -// instead. -- (void)getAccessTokenWithHandler:(GIDAccessTokenHandler)handler - DEPRECATED_MSG_ATTRIBUTE("Use |getTokensWithHandler:| instead."); - -// Refreshes the access token with the refresh token. Deprecated: Use |refreshTokensWithHandler:| -// to refresh access tokens instead. -- (void)refreshAccessTokenWithHandler:(GIDAccessTokenHandler)handler - DEPRECATED_MSG_ATTRIBUTE("Use |refreshTokensWithHandler:| instead."); - -@end diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.framework/Headers/GIDGoogleUser.h b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.framework/Headers/GIDGoogleUser.h deleted file mode 100644 index 9562a33f7c..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.framework/Headers/GIDGoogleUser.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * GIDGoogleUser.h - * Google Sign-In iOS SDK - * - * Copyright 2014 Google Inc. - * - * Use of this SDK is subject to the Google APIs Terms of Service: - * https://developers.google.com/terms/ - */ - -#import - -@class GIDAuthentication; -@class GIDProfileData; - -// This class represents a user account. -@interface GIDGoogleUser : NSObject - -// The Google user ID. -@property(nonatomic, readonly) NSString *userID; - -// Representation of the Basic profile data. It is only available if |shouldFetchBasicProfile| -// is set and either |signInWithUser| or |SignIn| has been completed successfully. -@property(nonatomic, readonly) GIDProfileData *profile; - -// The authentication object for the user. -@property(nonatomic, readonly) GIDAuthentication *authentication; - -// The API scopes requested by the app in an array of |NSString|s. -@property(nonatomic, readonly) NSArray *accessibleScopes; - -// For Google Apps hosted accounts, the domain of the user. -@property(nonatomic, readonly) NSString *hostedDomain; - -// An OAuth2 authorization code for the home server. -@property(nonatomic, readonly) NSString *serverAuthCode; - -@end diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.framework/Headers/GIDProfileData.h b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.framework/Headers/GIDProfileData.h deleted file mode 100644 index 8ffc995f3b..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.framework/Headers/GIDProfileData.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - * GIDProfileData.h - * Google Sign-In iOS SDK - * - * Copyright 2014 Google Inc. - * - * Use of this SDK is subject to the Google APIs Terms of Service: - * https://developers.google.com/terms/ - */ - -#import - -// This class represents the basic profile information of a GIDGoogleUser. -@interface GIDProfileData : NSObject - -// The Google user's email. -@property(nonatomic, readonly) NSString *email; - -// The Google user's full name. -@property(nonatomic, readonly) NSString *name; - -// The Google user's given name. -@property(nonatomic, readonly) NSString *givenName; - -// The Google user's family name. -@property(nonatomic, readonly) NSString *familyName; - -// Whether or not the user has profile image. -@property(nonatomic, readonly) BOOL hasImage; - -// Gets the user's profile image URL for the given dimension in pixels for each side of the square. -- (NSURL *)imageURLWithDimension:(NSUInteger)dimension; - -@end diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.framework/Headers/GIDSignIn.h b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.framework/Headers/GIDSignIn.h deleted file mode 100644 index e5cd40e881..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.framework/Headers/GIDSignIn.h +++ /dev/null @@ -1,185 +0,0 @@ -/* - * GIDSignIn.h - * Google Sign-In iOS SDK - * - * Copyright 2012 Google Inc. - * - * Use of this SDK is subject to the Google APIs Terms of Service: - * https://developers.google.com/terms/ - */ - -#import -#import - -@class GIDGoogleUser; -@class GIDSignIn; - -// The error domain for NSErrors returned by the Google Identity SDK. -extern NSString *const kGIDSignInErrorDomain; - -// A list of potential error codes returned from the Google Identity SDK. -typedef NS_ENUM(NSInteger, GIDSignInErrorCode) { - // Indicates an unknown error has occured. - kGIDSignInErrorCodeUnknown = -1, - // Indicates a problem reading or writing to the application keychain. - kGIDSignInErrorCodeKeychain = -2, - // Indicates no appropriate applications are installed on the user's device which can handle - // sign-in. This code will only ever be returned if using webview and switching to browser have - // both been disabled. - kGIDSignInErrorCodeNoSignInHandlersInstalled = -3, - // Indicates there are no auth tokens in the keychain. This error code will be returned by - // signInSilently if the user has never signed in before with the given scopes, or if they have - // since signed out. - kGIDSignInErrorCodeHasNoAuthInKeychain = -4, - // Indicates the user canceled the sign in request. - kGIDSignInErrorCodeCanceled = -5, -}; - -// A protocol implemented by the delegate of |GIDSignIn| to receive a refresh token or an error. -@protocol GIDSignInDelegate - -// The sign-in flow has finished and was successful if |error| is |nil|. -- (void)signIn:(GIDSignIn *)signIn - didSignInForUser:(GIDGoogleUser *)user - withError:(NSError *)error; - -@optional - -// Finished disconnecting |user| from the app successfully if |error| is |nil|. -- (void)signIn:(GIDSignIn *)signIn - didDisconnectWithUser:(GIDGoogleUser *)user - withError:(NSError *)error; - -@end - -// A protocol which may be implemented by consumers of |GIDSignIn| to be notified of when -// GIDSignIn has finished dispatching the sign-in request. -// -// This protocol is useful for developers who implement their own "Sign In with Google" button. -// Because there may be a brief delay between when the call to |signIn| is made, and when the -// app switch occurs, it is best practice to have the UI react to the user's input by displaying -// a spinner or other UI element. The |signInWillDispatch| method should be used to -// stop or hide the spinner. -@protocol GIDSignInUIDelegate - -@optional - -// The sign-in flow has finished selecting how to proceed, and the UI should no longer display -// a spinner or other "please wait" element. -- (void)signInWillDispatch:(GIDSignIn *)signIn error:(NSError *)error; - -// If implemented, this method will be invoked when sign in needs to display a view controller. -// The view controller should be displayed modally (via UIViewController's |presentViewController| -// method, and not pushed unto a navigation controller's stack. -- (void)signIn:(GIDSignIn *)signIn presentViewController:(UIViewController *)viewController; - -// If implemented, this method will be invoked when sign in needs to dismiss a view controller. -// Typically, this should be implemented by calling |dismissViewController| on the passed -// view controller. -- (void)signIn:(GIDSignIn *)signIn dismissViewController:(UIViewController *)viewController; - -@end - -// This class signs the user in with Google. It also provides single sign-on via a capable Google -// app if one is installed. -// -// For reference, please see "Google Sign-In for iOS" at -// https://developers.google.com/identity/sign-in/ios -// Here is sample code to use |GIDSignIn|: -// 1. Get a reference to the |GIDSignIn| shared instance: -// GIDSignIn *signIn = [GIDSignIn sharedInstance]; -// 2. Set the OAuth 2.0 scopes you want to request: -// [signIn setScopes:[NSArray arrayWithObject:@"https://www.googleapis.com/auth/plus.login"]]; -// 3. Call [signIn setDelegate:self]; -// 4. Set up delegate method |signIn:didSignInForUser:withError:|. -// 5. Call |handleURL| on the shared instance from |application:openUrl:...| in your app delegate. -// 6. Call |signIn| on the shared instance; -@interface GIDSignIn : NSObject - -// The authentication object for the current user, or |nil| if there is currently no logged in user. -@property(nonatomic, readonly) GIDGoogleUser *currentUser; - -// The object to be notified when authentication is finished. -@property(nonatomic, weak) id delegate; - -// The object to be notified when sign in dispatch selection is finished. -@property(nonatomic, weak) id uiDelegate; - -// The client ID of the app from the Google APIs console. Must set for sign-in to work. -@property(nonatomic, copy) NSString *clientID; - -// The API scopes requested by the app in an array of |NSString|s. The default value is |@[]|. -// -// This property is optional. If you set it, set it before calling |signIn|. -@property(nonatomic, copy) NSArray *scopes; - -// Whether or not to fetch basic profile data after signing in. The data is saved in the -// |GIDGoogleUser.profileData| object. -// -// Setting the flag will add "email" and "profile" to scopes. -// Defaults to |YES|. -@property(nonatomic, assign) BOOL shouldFetchBasicProfile; - -// The language for sign-in, in the form of ISO 639-1 language code optionally followed by a dash -// and ISO 3166-1 alpha-2 region code, such as |@"it"| or |@"pt-PT"|. Only set if different from -// system default. -// -// This property is optional. If you set it, set it before calling |signIn|. -@property(nonatomic, copy) NSString *language; - -// The login hint to the authorization server, for example the user's ID, or email address, -// to be prefilled if possible. -// -// This property is optional. If you set it, set it before calling |signIn|. -@property(nonatomic, copy) NSString *loginHint; - -// The client ID of the home web server. This will be returned as the |audience| property of the -// OpenID Connect ID token. For more info on the ID token: -// https://developers.google.com/identity/sign-in/ios/backend-auth -// -// This property is optional. If you set it, set it before calling |signIn|. -@property(nonatomic, copy) NSString *serverClientID; - -// The OpenID2 realm of the home web server. This allows Google to include the user's OpenID -// Identifier in the OpenID Connect ID token. -// -// This property is optional. If you set it, set it before calling |signIn|. -@property(nonatomic, copy) NSString *openIDRealm; - -// The Google Apps domain to which users must belong to sign in. To verify, check |GIDGoogleUser|'s -// |hostedDomain| property. -// -// This property is optional. If you set it, set it before calling |signIn|. -@property(nonatomic, copy) NSString *hostedDomain; - -// Returns a shared |GIDSignIn| instance. -+ (GIDSignIn *)sharedInstance; - -// This method should be called from your |UIApplicationDelegate|'s -// |application:openURL:sourceApplication:annotation|. Returns |YES| if |GIDSignIn| handled this -// URL. -- (BOOL)handleURL:(NSURL *)url - sourceApplication:(NSString *)sourceApplication - annotation:(id)annotation; - -// Checks whether the user has either currently signed in or has previous authentication saved in -// keychain. -- (BOOL)hasAuthInKeychain; - -// Attempts to sign in a previously authenticated user without interaction. The delegate will be -// called at the end of this process indicating success or failure. -- (void)signInSilently; - -// Starts the sign-in process. The delegate will be called at the end of this process. Note that -// this method should not be called when the app is starting up, (e.g in -// application:didFinishLaunchingWithOptions:). Instead use the |signInSilently| method. -- (void)signIn; - -// Marks current user as being in the signed out state. -- (void)signOut; - -// Disconnects the current user from the app and revokes previous authentication. If the operation -// succeeds, the OAuth 2.0 token is also removed from keychain. -- (void)disconnect; - -@end diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.framework/Headers/GIDSignInButton.h b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.framework/Headers/GIDSignInButton.h deleted file mode 100644 index 1e75fd6620..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.framework/Headers/GIDSignInButton.h +++ /dev/null @@ -1,51 +0,0 @@ -/* - * GIDSignInButton.h - * Google Sign-In iOS SDK - * - * Copyright 2012 Google Inc. - * - * Use of this SDK is subject to the Google APIs Terms of Service: - * https://developers.google.com/terms/ - */ - -#import - -// The various layout styles supported by the GIDSignInButton. -// The minimum size of the button depends on the language used for text. -// The following dimensions (in points) fit for all languages: -// kGIDSignInButtonStyleStandard: 230 x 48 -// kGIDSignInButtonStyleWide: 312 x 48 -// kGIDSignInButtonStyleIconOnly: 48 x 48 (no text, fixed size) -typedef NS_ENUM(NSInteger, GIDSignInButtonStyle) { - kGIDSignInButtonStyleStandard = 0, - kGIDSignInButtonStyleWide = 1, - kGIDSignInButtonStyleIconOnly = 2 -}; - -// The various color schemes supported by the GIDSignInButton. -typedef NS_ENUM(NSInteger, GIDSignInButtonColorScheme) { - kGIDSignInButtonColorSchemeDark = 0, - kGIDSignInButtonColorSchemeLight = 1 -}; - -// This class provides the "Sign in with Google" button. You can instantiate this -// class programmatically or from a NIB file. You should set up the -// |GIDSignIn| shared instance with your client ID and any additional scopes, -// implement the delegate methods for |GIDSignIn|, and add this button to your -// view hierarchy. -@interface GIDSignInButton : UIControl - -// The layout style for the sign-in button. -// Possible values: -// - kGIDSignInButtonStyleStandard: 230 x 48 (default) -// - kGIDSignInButtonStyleWide: 312 x 48 -// - kGIDSignInButtonStyleIconOnly: 48 x 48 (no text, fixed size) -@property(nonatomic, assign) GIDSignInButtonStyle style; - -// The color scheme for the sign-in button. -// Possible values: -// - kGIDSignInButtonColorSchemeDark -// - kGIDSignInButtonColorSchemeLight (default) -@property(nonatomic, assign) GIDSignInButtonColorScheme colorScheme; - -@end diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.framework/Headers/GoogleSignIn.h b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.framework/Headers/GoogleSignIn.h deleted file mode 100644 index 8ccf7cd280..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.framework/Headers/GoogleSignIn.h +++ /dev/null @@ -1,5 +0,0 @@ -#import "GIDAuthentication.h" -#import "GIDGoogleUser.h" -#import "GIDProfileData.h" -#import "GIDSignIn.h" -#import "GIDSignInButton.h" diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.framework/Modules/module.modulemap b/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.framework/Modules/module.modulemap deleted file mode 100644 index 0db9fcb0c2..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignIn.framework/Modules/module.modulemap +++ /dev/null @@ -1,9 +0,0 @@ -framework module GoogleSignIn { - umbrella header "GoogleSignIn.h" - export * - module * { export *} - link framework "CoreGraphics" - link framework "CoreText" - link framework "SafariServices" - link framework "Security" - link framework "SystemConfiguration"} diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignInDependencies.framework/GoogleSignInDependencies b/iphone/Maps/3party/GoogleSignIn/GoogleSignInDependencies.framework/GoogleSignInDependencies deleted file mode 100644 index 0a8c294b39..0000000000 Binary files a/iphone/Maps/3party/GoogleSignIn/GoogleSignInDependencies.framework/GoogleSignInDependencies and /dev/null differ diff --git a/iphone/Maps/3party/GoogleSignIn/GoogleSignInDependencies.framework/Modules/module.modulemap b/iphone/Maps/3party/GoogleSignIn/GoogleSignInDependencies.framework/Modules/module.modulemap deleted file mode 100644 index f646cdc81c..0000000000 --- a/iphone/Maps/3party/GoogleSignIn/GoogleSignInDependencies.framework/Modules/module.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module GoogleSignInDependencies { - export * - module * { export *} - link framework "CoreGraphics" - link framework "Security" - link framework "SystemConfiguration"} diff --git a/iphone/Maps/3party/MyTarget/MWMMyTarget.h b/iphone/Maps/3party/MyTarget/MWMMyTarget.h deleted file mode 100644 index b1d8b3e471..0000000000 --- a/iphone/Maps/3party/MyTarget/MWMMyTarget.h +++ /dev/null @@ -1,15 +0,0 @@ -#import "MWMMyTargetDelegate.h" - -@interface MWMMyTarget : NSObject - -+ (MWMMyTarget *)manager; -+ (void)startAdServerForbiddenCheckTimer; - -@property(weak, nonatomic) id delegate; -@property(nonatomic, readonly) NSUInteger bannersCount; - -- (MTRGNativeAppwallBanner *)bannerAtIndex:(NSUInteger)index; -- (void)handleBannerShowAtIndex:(NSUInteger)index; -- (void)handleBannerClickAtIndex:(NSUInteger)index withController:(UIViewController *)controller; - -@end diff --git a/iphone/Maps/3party/MyTarget/MWMMyTarget.mm b/iphone/Maps/3party/MyTarget/MWMMyTarget.mm deleted file mode 100644 index 472c00e4f0..0000000000 --- a/iphone/Maps/3party/MyTarget/MWMMyTarget.mm +++ /dev/null @@ -1,108 +0,0 @@ -#import "MWMMyTarget.h" -#import -#import "MWMSettings.h" -#import "MapsAppDelegate.h" -#import "Statistics.h" - -// If you have a "missing header error" here, then please run configure.sh script in the root repo -// folder. -#import "private.h" - -@interface MWMMyTarget () - -@property(weak, nonatomic) NSTimer * checkAdServerForbiddenTimer; - -@property(nonatomic) MTRGNativeAppwallAd * appWallAd; - -@end - -@implementation MWMMyTarget - -+ (MWMMyTarget *)manager { return [MapsAppDelegate theApp].myTarget; } -- (MTRGNativeAppwallBanner *)bannerAtIndex:(NSUInteger)index -{ - NSAssert(index < self.bannersCount, @"Invalid banner index"); - return self.appWallAd.banners[index]; -} - -- (void)handleBannerShowAtIndex:(NSUInteger)index -{ - MTRGNativeAppwallBanner * banner = [self bannerAtIndex:index]; - [Statistics logEvent:kStatMyTargetAppsDisplayed withParameters:@{kStatAd : banner.title}]; - [self.appWallAd handleShow:banner]; -} - -- (void)handleBannerClickAtIndex:(NSUInteger)index withController:(UIViewController *)controller -{ - MTRGNativeAppwallBanner * banner = [self bannerAtIndex:index]; - [Statistics logEvent:kStatMyTargetAppsClicked withParameters:@{kStatAd : banner.title}]; - [self.appWallAd handleClick:banner withController:controller]; -} - -#pragma mark - Refresh - -- (void)refresh -{ - if (self.bannersCount != 0) - return; - [self.appWallAd close]; - if ([MWMSettings adServerForbidden]) - return; - self.appWallAd = [[MTRGNativeAppwallAd alloc] initWithSlotId:MY_TARGET_KEY]; - self.appWallAd.closeButtonTitle = L(@"close"); - self.appWallAd.delegate = self; - [self.appWallAd load]; -} - -- (void)checkAdServerForbidden -{ - NSURLSession * session = [NSURLSession sharedSession]; - NSURL * url = [NSURL URLWithString:@(AD_PERMISION_SERVER_URL)]; - NSURLSessionDataTask * task = [session - dataTaskWithURL:url - completionHandler:^(NSData * data, NSURLResponse * response, NSError * error) { - bool const adServerForbidden = (error || [(NSHTTPURLResponse *)response statusCode] != 200); - [MWMSettings setAdServerForbidden:adServerForbidden]; - dispatch_async(dispatch_get_main_queue(), ^{ - [self refresh]; - }); - }]; - [task resume]; -} - -+ (void)startAdServerForbiddenCheckTimer -{ - MWMMyTarget * manager = [self manager]; - [manager checkAdServerForbidden]; - [manager.checkAdServerForbiddenTimer invalidate]; - manager.checkAdServerForbiddenTimer = - [NSTimer scheduledTimerWithTimeInterval:AD_PERMISION_CHECK_DURATION - target:manager - selector:@selector(checkAdServerForbidden) - userInfo:nil - repeats:YES]; -} - -#pragma mark - MTRGNativeAppwallAdDelegate - -- (void)onLoadWithAppwallBanners:(NSArray *)appwallBanners - appwallAd:(MTRGNativeAppwallAd *)appwallAd -{ - if (![appwallAd isEqual:self.appWallAd]) - return; - if (appwallBanners.count == 0) - [self.appWallAd close]; - [self.delegate onAppWallRefresh]; -} - -- (void)onNoAdWithReason:(NSString *)reason appwallAd:(MTRGNativeAppwallAd *)appwallAd -{ - if (![appwallAd isEqual:self.appWallAd]) - return; - [self.appWallAd close]; -} - -#pragma mark - Properties - -- (NSUInteger)bannersCount { return self.appWallAd.banners.count; } -@end diff --git a/iphone/Maps/3party/MyTarget/MWMMyTargetDelegate.h b/iphone/Maps/3party/MyTarget/MWMMyTargetDelegate.h deleted file mode 100644 index 782a8fa282..0000000000 --- a/iphone/Maps/3party/MyTarget/MWMMyTargetDelegate.h +++ /dev/null @@ -1,7 +0,0 @@ -#import - -@protocol MWMMyTargetDelegate - -- (void)onAppWallRefresh; - -@end diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGAdView.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGAdView.h deleted file mode 100644 index 310b5b4ff3..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGAdView.h +++ /dev/null @@ -1,62 +0,0 @@ -// -// MTRGAdView.h -// myTargetSDK 4.6.15 -// -// Created by Anton Bulankin on 05.03.15. -// Copyright (c) 2015 Mail.ru Group. All rights reserved. -// - -#import -#import - -typedef enum : NSUInteger -{ - MTRGAdSize_320x50 = 0, - MTRGAdSize_300x250 = 1, - MTRGAdSize_728x90 = 2 -} MTRGAdSize; - -@class MTRGAdView; - -@protocol MTRGAdViewDelegate - -- (void)onLoadWithAdView:(MTRGAdView *)adView; - -- (void)onNoAdWithReason:(NSString *)reason adView:(MTRGAdView *)adView; - -@optional - -- (void)onAdClickWithAdView:(MTRGAdView *)adView; - -- (void)onShowModalWithAdView:(MTRGAdView *)adView; - -- (void)onDismissModalWithAdView:(MTRGAdView *)adView; - -- (void)onLeaveApplicationWithAdView:(MTRGAdView *)adView; - -@end - -@interface MTRGAdView : UIView - -@property(nonatomic, weak) id delegate; -@property(nonatomic, readonly) MTRGCustomParams *customParams; -@property(nonatomic, weak) UIViewController *viewController; -@property(nonatomic) BOOL trackEnvironmentEnabled; - -+ (void)setDebugMode:(BOOL)enabled; - -+ (BOOL)isDebugMode; - -- (instancetype)initWithSlotId:(NSUInteger)slotId; -- (instancetype)initWithSlotId:(NSUInteger)slotId adSize:(MTRGAdSize)adSize; - -- (instancetype)initWithSlotId:(NSUInteger)slotId withRefreshAd:(BOOL)refreshAd; -- (instancetype)initWithSlotId:(NSUInteger)slotId withRefreshAd:(BOOL)refreshAd adSize:(MTRGAdSize)adSize; - -- (void)load; - -- (void)start; - -- (void)stop; - -@end diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGAppwallAdView.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGAppwallAdView.h deleted file mode 100644 index 153133227d..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGAppwallAdView.h +++ /dev/null @@ -1,25 +0,0 @@ -// -// MTRGAppwallAdView.h -// myTargetSDK 4.6.15 -// -// Created by Anton Bulankin on 16.01.15. -// Copyright (c) 2015 Mail.ru Group. All rights reserved. -// - -#import -#import - -@protocol MTRGAppwallAdViewDelegate - -- (void)appwallAdViewOnClickWithBanner:(MTRGNativeAppwallBanner *)banner; - -- (void)appwallAdViewOnShowWithBanner:(MTRGNativeAppwallBanner *)banner; - -@end - -@interface MTRGAppwallAdView : UIView -@property(nonatomic, weak) id delegate; - -- (instancetype)initWithBanners:(NSArray *)banners; - -@end diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGAppwallBannerAdView.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGAppwallBannerAdView.h deleted file mode 100644 index d7ca2091f8..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGAppwallBannerAdView.h +++ /dev/null @@ -1,83 +0,0 @@ -// -// MTRGAppwallBannerAdView.h -// myTargetSDK 4.6.15 -// -// Created by Anton Bulankin on 15.01.15. -// Copyright (c) 2015 Mail.ru Group. All rights reserved. -// - -#import -#import -#import - -@class MTRGAppwallBannerAdView; - -@protocol MTRGAppwallBannerAdViewDelegate - -- (void)appWallBannerAdViewOnClickWithView:(MTRGAppwallBannerAdView *)bannerAdView; - -- (void)appWallBannerAdViewOnCancelSelectWithView:(MTRGAppwallBannerAdView *)bannerAdView; - -@optional - -- (BOOL)appWallBannerAdViewAllowStartSelect:(MTRGAppwallBannerAdView *)bannerAdView; - -@end - - -@interface MTRGAppwallBannerAdView : UIView - -@property(nonatomic) MTRGNativeAppwallBanner *appWallBanner; - -- (instancetype)initWithDelegate:(id )delegate; -- (void)setAppWallBanner:(MTRGNativeAppwallBanner *)appWallBanner; - -- (void)setFixedWidth:(CGFloat)width; - -@property(nonatomic) UIEdgeInsets titleMargins; -@property(nonatomic) UIEdgeInsets descriptionMargins; -@property(nonatomic) UIEdgeInsets iconMargins; -@property(nonatomic) UIEdgeInsets ratingStarsMargins; -@property(nonatomic) UIEdgeInsets votesMargins; -@property(nonatomic) UIEdgeInsets gotoAppMargins; -@property(nonatomic) UIEdgeInsets crossNotifMargins; -@property(nonatomic) UIEdgeInsets coinsViewMargins; -@property(nonatomic) UIEdgeInsets coinsTextMargins; - -@property(nonatomic) UIEdgeInsets paddings; - -@property(nonatomic) UIColor * touchColor; -@property(nonatomic) UIColor * normalColor; - -@property(nonatomic) CGSize iconSize; -@property(nonatomic) CGSize ratingSize; -@property(nonatomic) CGSize coinViewSize; -@property(nonatomic) CGSize coinSize; -@property(nonatomic) CGSize gotoAppSize; -@property(nonatomic) CGSize statusImageSize; -@property(nonatomic) CGSize bubbleSize; -@property(nonatomic) CGSize crossNotifIconSize; - -@property(nonatomic) CGPoint bubblePosition; - -@property(nonatomic) UIFont * titleFont; -@property(nonatomic) UIFont * descriptionFont; -@property(nonatomic) UIFont * votesFont; -@property(nonatomic) UIFont * coinFont; - -@property(nonatomic) NSInteger descriptionNumberOfLines; -@property(nonatomic) NSLineBreakMode descriptionLineBreakMode; - -@property(nonatomic) UIColor * titleColor; -@property(nonatomic) UIColor * descriptionColor; -@property(nonatomic) UIColor * votesColor; - -@property(nonatomic) BOOL showTopBorder; -@property(nonatomic) BOOL showGotoAppIcon; -@property(nonatomic) BOOL showRating; -@property(nonatomic) BOOL showStatusIcon; -@property(nonatomic) BOOL showBubbleIcon; -@property(nonatomic) BOOL showCoins; -@property(nonatomic) BOOL showCrossNotifIcon; - -@end diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGChatListAdView.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGChatListAdView.h deleted file mode 100644 index b08a5e925c..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGChatListAdView.h +++ /dev/null @@ -1,41 +0,0 @@ -// -// MTRGChatListAdView.h -// myTargetSDK 4.6.15 -// -// Created by Anton Bulankin on 05.12.14. -// Copyright (c) 2014 Mail.ru Group. All rights reserved. -// - -#import -#import -#import - -@interface MTRGChatListAdView : UIView - -@property(nonatomic) MTRGNativePromoBanner *banner; -@property(nonatomic) UIColor *backgroundColor; -@property(nonatomic, readonly) UILabel *ageRestrictionsLabel; -@property(nonatomic, readonly) UILabel *adLabel; - -@property(nonatomic, readonly) UILabel *titleLabel; -@property(nonatomic, readonly) UILabel *descriptionLabel; -@property(nonatomic, readonly) UIImageView *iconImageView; -@property(nonatomic, readonly) UILabel *domainLabel; -@property(nonatomic, readonly) UILabel *disclaimerLabel; -@property(nonatomic, readonly) MTRGStarsRatingLabel *ratingStarsLabel; -@property(nonatomic, readonly) UILabel *votesLabel; - -@property(nonatomic) UIEdgeInsets contentMargins; -@property(nonatomic) UIEdgeInsets adLabelMargins; -@property(nonatomic) UIEdgeInsets ageRestrictionsMargins; -@property(nonatomic) UIEdgeInsets titleMargins; -@property(nonatomic) UIEdgeInsets domainMargins; -@property(nonatomic) UIEdgeInsets descriptionMargins; -@property(nonatomic) UIEdgeInsets disclaimerMargins; -@property(nonatomic) UIEdgeInsets iconMargins; -@property(nonatomic) UIEdgeInsets ratingStarsMargins; -@property(nonatomic) UIEdgeInsets votesMargins; - -- (void)loadImages; - -@end diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGContentStreamAdView.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGContentStreamAdView.h deleted file mode 100644 index 36f49d8e8a..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGContentStreamAdView.h +++ /dev/null @@ -1,58 +0,0 @@ -// -// MTRGContentStreamAdView.h -// myTargetSDK 4.6.15 -// -// Created by Anton Bulankin on 05.12.14. -// Copyright (c) 2014 Mail.ru Group. All rights reserved. -// - -#import -#import -#import -#import - -@class MTRGPromoCardCollectionView; - -@interface MTRGContentStreamAdView : UIView - -@property(nonatomic) MTRGNativePromoBanner *banner; -@property(nonatomic) UIColor *backgroundColor; -@property(nonatomic, readonly) UILabel *ageRestrictionsLabel; -@property(nonatomic, readonly) UILabel *adLabel; - -@property(nonatomic, readonly) UILabel *titleLabel; -@property(nonatomic, readonly) UILabel *titleBottomLabel; -@property(nonatomic, readonly) UILabel *descriptionLabel; -@property(nonatomic, readonly) UIImageView *iconImageView; -@property(nonatomic, readonly) MTRGMediaAdView *mediaAdView; -@property(nonatomic, readonly) MTRGPromoCardCollectionView *cardCollectionView; -@property(nonatomic, readonly) UILabel *domainLabel; -@property(nonatomic, readonly) UILabel *domainBottomLabel; -@property(nonatomic, readonly) UILabel *categoryLabel; -@property(nonatomic, readonly) UILabel *categoryBottomLabel; -@property(nonatomic, readonly) UILabel *disclaimerLabel; -@property(nonatomic, readonly) MTRGStarsRatingLabel *ratingStarsLabel; -@property(nonatomic, readonly) UILabel *votesLabel; -@property(nonatomic, readonly) UIView *buttonView; -@property(nonatomic, readonly) UILabel *buttonToLabel; - -@property(nonatomic) UIEdgeInsets contentMargins; -@property(nonatomic) UIEdgeInsets adLabelMargins; -@property(nonatomic) UIEdgeInsets ageRestrictionsMargins; -@property(nonatomic) UIEdgeInsets titleMargins; -@property(nonatomic) UIEdgeInsets titleBottomMargins; -@property(nonatomic) UIEdgeInsets domainMargins; -@property(nonatomic) UIEdgeInsets domainBottomMargins; -@property(nonatomic) UIEdgeInsets categoryMargins; -@property(nonatomic) UIEdgeInsets descriptionMargins; -@property(nonatomic) UIEdgeInsets disclaimerMargins; -@property(nonatomic) UIEdgeInsets imageMargins; -@property(nonatomic) UIEdgeInsets iconMargins; -@property(nonatomic) UIEdgeInsets ratingStarsMargins; -@property(nonatomic) UIEdgeInsets votesMargins; -@property(nonatomic) UIEdgeInsets buttonMargins; -@property(nonatomic) UIEdgeInsets buttonCaptionMargins; - -- (void)loadImages; - -@end diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGContentStreamCardAdView.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGContentStreamCardAdView.h deleted file mode 100644 index c5cf90f3db..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGContentStreamCardAdView.h +++ /dev/null @@ -1,22 +0,0 @@ -// -// MTRGContentStreamCardAdView.h -// myTarget -// -// Created by Andrey Seredkin on 20.10.16. -// Copyright © 2016 Mail.ru. All rights reserved. -// - -#import -#import -#import - -@interface MTRGContentStreamCardAdView : UICollectionViewCell - -@property(nonatomic, readonly) UILabel *titleLabel; -@property(nonatomic, readonly) UILabel *descriptionLabel; -@property(nonatomic, readonly) UILabel *ctaButtonLabel; -@property(nonatomic, readonly) MTRGMediaAdView *mediaAdView; - -- (CGFloat)heightWithCardWidth:(CGFloat)width; - -@end diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGContentWallAdView.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGContentWallAdView.h deleted file mode 100644 index 757be93bbc..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGContentWallAdView.h +++ /dev/null @@ -1,30 +0,0 @@ -// -// MTRGContentWallAdView.h -// myTargetSDK 4.6.15 -// -// Created by Anton Bulankin on 05.12.14. -// Copyright (c) 2014 Mail.ru Group. All rights reserved. -// - -#import -#import -#import - -@interface MTRGContentWallAdView : UIView - -@property(nonatomic) MTRGNativePromoBanner *banner; -@property(nonatomic) UIColor *backgroundColor; - -@property(nonatomic, readonly) UILabel *ageRestrictionsLabel; -@property(nonatomic, readonly) UILabel *adLabel; - -@property(nonatomic) UIEdgeInsets contentMargins; -@property(nonatomic) UIEdgeInsets adLabelMargins; -@property(nonatomic) UIEdgeInsets ageRestrictionsMargins; - -@property(nonatomic, readonly) MTRGMediaAdView *mediaAdView; -@property(nonatomic) UIEdgeInsets imageMargins; - -- (void)loadImages; - -@end diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGCustomParams.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGCustomParams.h deleted file mode 100644 index b5974131bc..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGCustomParams.h +++ /dev/null @@ -1,46 +0,0 @@ -// -// MTRGCustomParams.h -// myTargetSDK 4.6.15 -// -// Created by Anton Bulankin on 22.12.14. -// Copyright (c) 2014 Mail.ru Group. All rights reserved. -// - -#import - -extern NSString *const kMTRGCustomParamsMediationKey; -extern NSString *const kMTRGCustomParamsMediationAdmob; -extern NSString *const kMTRGCustomParamsMediationMopub; -extern NSString *const kMTRGCustomParamsHtmlSupportKey; - -typedef enum -{ - MTRGGenderUnspecified, - MTRGGenderUnknown, - MTRGGenderMale, - MTRGGenderFemale -} MTRGGender; - -@interface MTRGCustomParams : NSObject - -@property NSNumber *age; -@property(nonatomic) MTRGGender gender; -@property(copy) NSString *language; - -@property(copy) NSString *email; -@property(copy) NSString *phone; -@property(copy) NSString *icqId; -@property(copy) NSString *okId; -@property(copy) NSString *vkId; - -@property(copy) NSString *mrgsAppId; -@property(copy) NSString *mrgsUserId; -@property(copy) NSString *mrgsDeviceId; - -- (NSDictionary *)asDictionary; - -- (void)setCustomParam:(NSString *)param forKey:(NSString *)key; - -- (NSString *)customParamForKey:(NSString *)key; - -@end diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGImageData.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGImageData.h deleted file mode 100644 index 3c7eb9f7ab..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGImageData.h +++ /dev/null @@ -1,17 +0,0 @@ -// -// MTRGImageData.h -// myTargetSDK 4.6.15 -// -// Created by Anton Bulankin on 17.11.14. -// Copyright (c) 2014 Mail.ru Group. All rights reserved. -// - -#import -#import - -@interface MTRGImageData : MTRGMediaData - -@property(nonatomic, readonly) UIImage *image; - -- (instancetype)initWithImage:(UIImage *)image; -@end diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGInstreamAd.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGInstreamAd.h deleted file mode 100644 index 3377048d41..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGInstreamAd.h +++ /dev/null @@ -1,100 +0,0 @@ -// -// MTRGInstreamAd.h -// myTargetSDK 4.6.15 -// -// Created by Anton Bulankin on 31.08.16. -// Copyright © 2016 Mail.ru. All rights reserved. -// - -#import -#import - -@class MTRGCustomParams; -@class MTRGInstreamAd; -@class UIViewController; - -@interface MTRGInstreamAdBanner : NSObject - -@property(nonatomic) NSTimeInterval duration; -@property(nonatomic) BOOL allowClose; -@property(nonatomic) NSTimeInterval allowCloseDelay; -@property(nonatomic) CGSize size; -@property(nonatomic, copy) NSString *ctaText; - -@end - -@protocol MTRGInstreamAdDelegate - -- (void)onLoadWithInstreamAd:(MTRGInstreamAd *)instreamAd; - -- (void)onNoAdWithReason:(NSString *)reason instreamAd:(MTRGInstreamAd *)instreamAd; - -@optional - -- (void)onErrorWithReason:(NSString *)reason instreamAd:(MTRGInstreamAd *)instreamAd; - -- (void)onBannerStart:(MTRGInstreamAdBanner *)banner instreamAd:(MTRGInstreamAd *)instreamAd; - -- (void)onBannerComplete:(MTRGInstreamAdBanner *)banner instreamAd:(MTRGInstreamAd *)instreamAd; - -- (void)onBannerTimeLeftChange:(NSTimeInterval)timeLeft duration:(NSTimeInterval)duration instreamAd:(MTRGInstreamAd *)instreamAd; - -- (void)onCompleteWithSection:(NSString *)section instreamAd:(MTRGInstreamAd *)instreamAd; - -- (void)onShowModalWithInstreamAd:(MTRGInstreamAd *)instreamAd; - -- (void)onDismissModalWithInstreamAd:(MTRGInstreamAd *)instreamAd; - -- (void)onLeaveApplicationWithInstreamAd:(MTRGInstreamAd *)instreamAd; - -@end - -@interface MTRGInstreamAd : NSObject - -@property(nonatomic, weak) id delegate; -@property(nonatomic, readonly) MTRGCustomParams *customParams; -@property(nonatomic) NSUInteger videoQuality; -@property(nonatomic) id player; -@property(nonatomic) BOOL fullscreen; -@property(nonatomic) BOOL trackEnvironmentEnabled; -@property(nonatomic) float volume; - -+ (void)setDebugMode:(BOOL)enabled; - -+ (BOOL)isDebugMode; - -- (instancetype)initWithSlotId:(NSUInteger)slotId; - -- (void)load; - -- (void)pause; - -- (void)resume; - -- (void)stop; - -- (void)skip; - -- (void)skipBanner; - -- (void)handleClickWithController:(UIViewController *)controller; - -- (void)startPreroll; - -- (void)startPostroll; - -- (void)startPauseroll; - -- (void)startMidrollWithPoint:(NSNumber *)point; - -- (void)useDefaultPlayer; - -- (void)configureMidpointsP:(NSArray *)midpointsP forVideoDuration:(NSTimeInterval)videoDuration; - -- (void)configureMidpoints:(NSArray *)midpoints forVideoDuration:(NSTimeInterval)videoDuration; - -- (void)configureMidpointsForVideoDuration:(NSTimeInterval)videoDuration; - -- (NSArray *)midpoints; - -@end diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGInstreamAdCompanionBanner.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGInstreamAdCompanionBanner.h deleted file mode 100644 index 70192e2e8f..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGInstreamAdCompanionBanner.h +++ /dev/null @@ -1,27 +0,0 @@ -// -// MTRGInstreamAdCompanionBanner.h -// MyTargetSDK -// -// Created by Andrey Seredkin on 14.12.16. -// Copyright © 2016 Mail.ru Group. All rights reserved. -// - -#import - -@interface MTRGInstreamAdCompanionBanner : NSObject - -@property(nonatomic) NSUInteger width; -@property(nonatomic) NSUInteger height; -@property(nonatomic) NSUInteger assetWidth; -@property(nonatomic) NSUInteger assetHeight; -@property(nonatomic) NSUInteger expandedWidth; -@property(nonatomic) NSUInteger expandedHeight; - -@property(nonatomic, copy) NSString *staticResource; -@property(nonatomic, copy) NSString *iframeResource; -@property(nonatomic, copy) NSString *htmlResource; -@property(nonatomic, copy) NSString *apiFramework; -@property(nonatomic, copy) NSString *adSlotID; -@property(nonatomic, copy) NSString *required; - -@end diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGInstreamAdPlayer.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGInstreamAdPlayer.h deleted file mode 100644 index 6fd72f2750..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGInstreamAdPlayer.h +++ /dev/null @@ -1,43 +0,0 @@ -// -// MTRGInstreamAdPlayer.h -// myTarget -// -// Created by Anton Bulankin on 21.09.16. -// Copyright © 2016 Mail.ru. All rights reserved. -// - -#import - -@protocol MTRGInstreamAdPlayerDelegate - -- (void)onAdVideoStart; - -- (void)onAdVideoPause; - -- (void)onAdVideoResume; - -- (void)onAdVideoStop; - -- (void)onAdVideoErrorWithReason:(NSString *)reason; - -- (void)onAdVideoComplete; - -@end - -@protocol MTRGInstreamAdPlayer - -@property(nonatomic, readonly) NSTimeInterval adVideoDuration; -@property(nonatomic, readonly) NSTimeInterval adVideoTimeElapsed; -@property(nonatomic, weak) id adPlayerDelegate; -@property(nonatomic, readonly) UIView *adPlayerView; -@property(nonatomic) float volume; - -- (void)playAdVideoWithUrl:(NSURL *)url; - -- (void)pauseAdVideo; - -- (void)resumeAdVideo; - -- (void)stopAdVideo; - -@end diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGInstreamAudioAd.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGInstreamAudioAd.h deleted file mode 100644 index 5e1ac3e4af..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGInstreamAudioAd.h +++ /dev/null @@ -1,99 +0,0 @@ -// -// MTRGInstreamAudioAd.h -// MyTargetSDK -// -// Created by Andrey Seredkin on 20.12.16. -// Copyright © 2016 Mail.ru Group. All rights reserved. -// - -#import -#import -#import - -@class MTRGInstreamAudioAd; -@class MTRGCustomParams; - -@interface MTRGInstreamAudioAdBanner : NSObject - -@property(nonatomic) NSTimeInterval duration; -@property(nonatomic) BOOL allowSeek; -@property(nonatomic) BOOL allowSkip; -@property(nonatomic) BOOL allowTrackChange; -@property(nonatomic, copy) NSString *adText; -@property(nonatomic) NSArray *companionBanners; - -@end - -@protocol MTRGInstreamAudioAdDelegate - -- (void)onLoadWithInstreamAudioAd:(MTRGInstreamAudioAd *)instreamAudioAd; - -- (void)onNoAdWithReason:(NSString *)reason instreamAudioAd:(MTRGInstreamAudioAd *)instreamAudioAd; - -@optional - -- (void)onErrorWithReason:(NSString *)reason instreamAudioAd:(MTRGInstreamAudioAd *)instreamAudioAd; - -- (void)onBannerStart:(MTRGInstreamAudioAdBanner *)banner instreamAudioAd:(MTRGInstreamAudioAd *)instreamAudioAd; - -- (void)onBannerComplete:(MTRGInstreamAudioAdBanner *)banner instreamAudioAd:(MTRGInstreamAudioAd *)instreamAudioAd; - -- (void)onBannerTimeLeftChange:(NSTimeInterval)timeLeft duration:(NSTimeInterval)duration instreamAudioAd:(MTRGInstreamAudioAd *)instreamAudioAd; - -- (void)onCompleteWithSection:(NSString *)section instreamAudioAd:(MTRGInstreamAudioAd *)instreamAudioAd; - -- (void)onShowModalWithInstreamAudioAd:(MTRGInstreamAudioAd *)instreamAudioAd; - -- (void)onDismissModalWithInstreamAudioAd:(MTRGInstreamAudioAd *)instreamAudioAd; - -- (void)onLeaveApplicationWithInstreamAudioAd:(MTRGInstreamAudioAd *)instreamAudioAd; - -@end - -@interface MTRGInstreamAudioAd : NSObject - -@property(nonatomic, weak) id delegate; -@property(nonatomic, readonly) MTRGCustomParams *customParams; -@property(nonatomic) id player; -@property(nonatomic) BOOL trackEnvironmentEnabled; -@property(nonatomic) float volume; - -+ (void)setDebugMode:(BOOL)enabled; - -+ (BOOL)isDebugMode; - -- (instancetype)initWithSlotId:(NSUInteger)slotId; - -- (void)load; - -- (void)pause; - -- (void)resume; - -- (void)stop; - -- (void)skip; - -- (void)skipBanner; - -- (void)handleCompanionClick:(MTRGInstreamAdCompanionBanner *)companionBanner withController:(UIViewController *)controller; - -- (void)handleCompanionShow:(MTRGInstreamAdCompanionBanner *)companionBanner; - -- (void)startPreroll; - -- (void)startPostroll; - -- (void)startPauseroll; - -- (void)startMidrollWithPoint:(NSNumber *)point; - -- (void)configureMidpointsP:(NSArray *)midpointsP forAudioDuration:(NSTimeInterval)audioDuration; - -- (void)configureMidpoints:(NSArray *)midpoints forAudioDuration:(NSTimeInterval)audioDuration; - -- (void)configureMidpointsForAudioDuration:(NSTimeInterval)audioDuration; - -- (NSArray *)midpoints; - -@end diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGInstreamAudioAdPlayer.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGInstreamAudioAdPlayer.h deleted file mode 100644 index dddcba8dcf..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGInstreamAudioAdPlayer.h +++ /dev/null @@ -1,42 +0,0 @@ -// -// MTRGInstreamAudioAdPlayer.h -// MyTargetSDK -// -// Created by Andrey Seredkin on 20.12.16. -// Copyright © 2016 Mail.ru Group. All rights reserved. -// - -#import - -@protocol MTRGInstreamAudioAdPlayerDelegate - -- (void)onAdAudioStart; - -- (void)onAdAudioPause; - -- (void)onAdAudioResume; - -- (void)onAdAudioStop; - -- (void)onAdAudioErrorWithReason:(NSString *)reason; - -- (void)onAdAudioComplete; - -@end - -@protocol MTRGInstreamAudioAdPlayer - -@property(nonatomic, readonly) NSTimeInterval adAudioDuration; -@property(nonatomic, readonly) NSTimeInterval adAudioTimeElapsed; -@property(nonatomic, weak) id adPlayerDelegate; -@property(nonatomic) float volume; - -- (void)playAdAudioWithUrl:(NSURL *)url; - -- (void)pauseAdAudio; - -- (void)resumeAdAudio; - -- (void)stopAdAudio; - -@end diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGInterstitialAd.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGInterstitialAd.h deleted file mode 100644 index d8a09324c3..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGInterstitialAd.h +++ /dev/null @@ -1,56 +0,0 @@ -// -// InterstitialAd.h -// myTargetSDK 4.6.15 -// -// Created by Anton Bulankin on 04.02.15. -// Copyright (c) 2015 Mail.ru Group. All rights reserved. -// - -#import -#import -#import - -@class MTRGInterstitialAd; - -@protocol MTRGInterstitialAdDelegate - -- (void)onLoadWithInterstitialAd:(MTRGInterstitialAd *)interstitialAd; - -- (void)onNoAdWithReason:(NSString *)reason interstitialAd:(MTRGInterstitialAd *)interstitialAd; - -@optional - -- (void)onClickWithInterstitialAd:(MTRGInterstitialAd *)interstitialAd; - -- (void)onCloseWithInterstitialAd:(MTRGInterstitialAd *)interstitialAd; - -- (void)onVideoCompleteWithInterstitialAd:(MTRGInterstitialAd *)interstitialAd; - -- (void)onDisplayWithInterstitialAd:(MTRGInterstitialAd *)interstitialAd; - -- (void)onLeaveApplicationWithInterstitialAd:(MTRGInterstitialAd *)interstitialAd; - -@end - - -@interface MTRGInterstitialAd : NSObject - -@property(nonatomic, weak) id delegate; -@property(nonatomic, readonly) MTRGCustomParams *customParams; -@property(nonatomic) BOOL trackEnvironmentEnabled; - -+ (void)setDebugMode:(BOOL)enabled; - -+ (BOOL)isDebugMode; - -- (instancetype)initWithSlotId:(NSUInteger)slotId; - -- (void)load; - -- (void)showWithController:(UIViewController *)controller; - -- (void)showModalWithController:(UIViewController *)controller; - -- (void)close; - -@end diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGInterstitialSliderAd.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGInterstitialSliderAd.h deleted file mode 100644 index 3a2dd48aa6..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGInterstitialSliderAd.h +++ /dev/null @@ -1,54 +0,0 @@ -// -// MTRGInterstitialSliderAd.h -// MyTargetSDK -// -// Created by Andrey Seredkin on 10.11.16. -// Copyright © 2016 Mail.ru Group. All rights reserved. -// - -#import -#import -#import - -@class MTRGInterstitialSliderAd; - -@protocol MTRGInterstitialSliderAdDelegate - -- (void)onLoadWithInterstitialSliderAd:(MTRGInterstitialSliderAd *)interstitialSliderAd; - -- (void)onNoAdWithReason:(NSString *)reason interstitialSliderAd:(MTRGInterstitialSliderAd *)interstitialSliderAd; - -@optional - -- (void)onClickWithInterstitialSliderAd:(MTRGInterstitialSliderAd *)interstitialSliderAd; - -- (void)onCloseWithInterstitialSliderAd:(MTRGInterstitialSliderAd *)interstitialSliderAd; - -- (void)onDisplayWithInterstitialSliderAd:(MTRGInterstitialSliderAd *)interstitialSliderAd; - -- (void)onLeaveApplicationWithInterstitialSliderAd:(MTRGInterstitialSliderAd *)interstitialSliderAd; - -@end - - -@interface MTRGInterstitialSliderAd : NSObject - -@property(nonatomic, weak) id delegate; -@property(nonatomic, readonly) MTRGCustomParams *customParams; -@property(nonatomic) BOOL trackEnvironmentEnabled; - -+ (void)setDebugMode:(BOOL)enabled; - -+ (BOOL)isDebugMode; - -- (instancetype)initWithSlotId:(NSUInteger)slotId; - -- (void)load; - -- (void)showWithController:(UIViewController *)controller; - -- (void)showModalWithController:(UIViewController *)controller; - -- (void)close; - -@end diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGManager.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGManager.h deleted file mode 100644 index 1bb2ee9247..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGManager.h +++ /dev/null @@ -1,19 +0,0 @@ -// -// MTRGManager.h -// myTargetSDK 4.6.15 -// -// Created by Anton Bulankin on 18.09.15. -// Copyright © 2015 Mail.ru. All rights reserved. -// - -#import - - -@interface MTRGManager : NSObject - -+ (NSDictionary *)getFingerprintParams; - -+ (void)trackUrl:(NSString *)trackingUrl; - -@end - diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGMediaAdView.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGMediaAdView.h deleted file mode 100644 index 05794849d8..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGMediaAdView.h +++ /dev/null @@ -1,17 +0,0 @@ -// -// MTRGMediaAdView.h -// myTargetSDK 4.6.15 -// -// Created by Andrey Seredkin on 19.08.16. -// Copyright © 2016 Mail.ru. All rights reserved. -// - -#import - -@interface MTRGMediaAdView : UIView - -@property(nonatomic, readonly) UIImageView *imageView; -@property(nonatomic, readonly) UIImageView *playImageView; -@property(nonatomic, readonly) UIActivityIndicatorView *activityIndicatorView; - -@end diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGMediaData.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGMediaData.h deleted file mode 100644 index e2ad42931a..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGMediaData.h +++ /dev/null @@ -1,21 +0,0 @@ -// -// MTRGMediaData.h -// myTargetSDK 4.6.15 -// -// Created by Timur Voloshin on 05.19.16. -// Copyright © 2016 Mail.ru. All rights reserved. -// - -#import -#import - - -@interface MTRGMediaData : NSObject - -@property(nonatomic, readonly, copy) NSString *url; -@property(nonatomic) id data; -@property(nonatomic) CGSize size; - -- (instancetype)initWithUrl:(NSString *)url; - -@end diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGNativeAd.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGNativeAd.h deleted file mode 100644 index f6f24f60a6..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGNativeAd.h +++ /dev/null @@ -1,59 +0,0 @@ -// -// MTRGNativeAd.h -// myTargetSDK 4.6.15 -// -// Created by Anton Bulankin on 10.11.14. -// Copyright (c) 2014 Mail.ru Group. All rights reserved. -// - -#import - -@class MTRGNativeAd; -@class MTRGCustomParams; - -@protocol MTRGNativeAdDelegate - -- (void)onLoadWithNativePromoBanner:(MTRGNativePromoBanner *)promoBanner nativeAd:(MTRGNativeAd *)nativeAd; - -- (void)onNoAdWithReason:(NSString *)reason nativeAd:(MTRGNativeAd *)nativeAd; - -@optional - -- (void)onAdShowWithNativeAd:(MTRGNativeAd *)nativeAd; - -- (void)onAdClickWithNativeAd:(MTRGNativeAd *)nativeAd; - -- (void)onShowModalWithNativeAd:(MTRGNativeAd *)nativeAd; - -- (void)onDismissModalWithNativeAd:(MTRGNativeAd *)nativeAd; - -- (void)onLeaveApplicationWithNativeAd:(MTRGNativeAd *)nativeAd; - -@end - -@interface MTRGNativeAd : NSObject - -@property(nonatomic, weak) id delegate; -@property(nonatomic, readonly) MTRGNativePromoBanner *banner; -@property(nonatomic, readonly) MTRGCustomParams *customParams; -@property(nonatomic) BOOL autoLoadImages; -@property(nonatomic) BOOL autoLoadVideo; -@property(nonatomic) BOOL trackEnvironmentEnabled; - -+ (void)setDebugMode:(BOOL)enabled; - -+ (BOOL)isDebugMode; - -+ (void)loadImage:(MTRGImageData *)imageData toView:(UIImageView *)imageView; - -- (instancetype)initWithSlotId:(NSUInteger)slotId; - -- (void)load; - -- (void)registerView:(UIView *)containerView withController:(UIViewController *)controller; - -- (void)registerView:(UIView *)containerView withController:(UIViewController *)controller withClickableViews:(NSArray *)clickableViews; - -- (void)unregisterView; - -@end diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGNativeAppwallAd.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGNativeAppwallAd.h deleted file mode 100644 index 5dc6d62bc1..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGNativeAppwallAd.h +++ /dev/null @@ -1,65 +0,0 @@ -// -// MTRGNativeAppwallAd.h -// myTargetSDK 4.6.15 -// -// Created by Anton Bulankin on 13.01.15. -// Copyright (c) 2015 Mail.ru Group. All rights reserved. -// - -#import - -#import -#import -#import - - -@class MTRGNativeAppwallAd; - -@protocol MTRGNativeAppwallAdDelegate - -- (void)onLoadWithAppwallBanners:(NSArray *)appwallBanners appwallAd:(MTRGNativeAppwallAd *)appwallAd; - -- (void)onNoAdWithReason:(NSString *)reason appwallAd:(MTRGNativeAppwallAd *)appwallAd; - -@optional - -- (void)onAdClickWithNativeAppwallAd:(MTRGNativeAppwallAd *)appwallAd appwallBanner:(MTRGNativeAppwallBanner *)appwallBanner; - -@end - - -@interface MTRGNativeAppwallAd : NSObject - -@property(nonatomic, weak) id delegate; -@property(nonatomic, copy) NSString *appWallTitle; -@property(nonatomic, copy) NSString *closeButtonTitle; -@property(nonatomic) NSUInteger cachePeriodInSec; -@property(nonatomic, readonly) MTRGCustomParams *customParams; -@property(nonatomic, readonly) NSArray *banners; -@property(nonatomic) BOOL autoLoadImages; -@property(nonatomic) BOOL trackEnvironmentEnabled; - -+ (void)setDebugMode:(BOOL)enabled; - -+ (BOOL)isDebugMode; - -+ (void)loadImage:(MTRGImageData *)imageData toView:(UIImageView *)imageView; - -- (instancetype)initWithSlotId:(NSUInteger)slotId; - -- (void)load; - -- (void)showWithController:(UIViewController *)controller onComplete:(void (^)())onComplete - onError:(void (^)(NSError *error))onError; - -- (void)registerAppWallAdView:(MTRGAppwallAdView *)appWallAdView withController:(UIViewController *)controller; - -- (void)close; - -- (BOOL)hasNotifications; - -- (void)handleShow:(MTRGNativeAppwallBanner *)appWallBanner; - -- (void)handleClick:(MTRGNativeAppwallBanner *)appWallBanner withController:(UIViewController *)controller; - -@end diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGNativeAppwallBanner.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGNativeAppwallBanner.h deleted file mode 100644 index 531836c0e5..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGNativeAppwallBanner.h +++ /dev/null @@ -1,39 +0,0 @@ -// -// MTRGNativeAppwallBanner.h -// myTargetSDK 4.6.15 -// -// Created by Anton Bulankin on 13.01.15. -// Copyright (c) 2015 Mail.ru Group. All rights reserved. -// - -#import -#import - - -@interface MTRGNativeAppwallBanner : NSObject - -@property(nonatomic, copy) NSString *status; -@property(nonatomic, copy) NSString *title; -@property(nonatomic, copy) NSString *descriptionText; -@property(nonatomic, copy) NSString *paidType; -@property(nonatomic, copy) NSString *mrgsId; -@property(nonatomic) BOOL hasNotification; -@property(nonatomic) BOOL subitem; -@property(nonatomic) BOOL isAppInstalled; -@property(nonatomic) BOOL main; -@property(nonatomic) BOOL requireCategoryHighlight; -@property(nonatomic) BOOL banner; -@property(nonatomic) BOOL requireWifi; -@property(nonatomic) NSNumber *rating; -@property(nonatomic) NSUInteger votes; -@property(nonatomic) NSUInteger coins; -@property(nonatomic) UIColor *coinsBgColor; -@property(nonatomic) UIColor *coinsTextColor; -@property(nonatomic) MTRGImageData *icon; -@property(nonatomic) MTRGImageData *statusImage; -@property(nonatomic) MTRGImageData *coinsIcon; -@property(nonatomic) MTRGImageData *crossNotifIcon; -@property(nonatomic) MTRGImageData *bubbleIcon; -@property(nonatomic) MTRGImageData *gotoAppIcon; -@property(nonatomic) MTRGImageData *itemHighlightIcon; -@end diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGNativePromoBanner.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGNativePromoBanner.h deleted file mode 100644 index 5ef9fa57d3..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGNativePromoBanner.h +++ /dev/null @@ -1,32 +0,0 @@ -// -// MTRGNativePromoBanner.h -// myTargetSDK 4.6.15 -// -// Created by Anton Bulankin on 17.11.14. -// Copyright (c) 2014 Mail.ru Group. All rights reserved. -// - -#import -#import -#import -#import - -@interface MTRGNativePromoBanner : NSObject - -@property(nonatomic, copy) NSString *advertisingLabel; -@property(nonatomic, copy) NSString *ageRestrictions; -@property(nonatomic, copy) NSString *title; -@property(nonatomic, copy) NSString *descriptionText; -@property(nonatomic, copy) NSString *disclaimer; -@property(nonatomic, copy) NSString *category; -@property(nonatomic, copy) NSString *subcategory; -@property(nonatomic, copy) NSString *domain; -@property(nonatomic, copy) NSString *ctaText; -@property(nonatomic) NSNumber *rating; -@property(nonatomic) NSUInteger votes; -@property(nonatomic) MTRGNavigationType navigationType; -@property(nonatomic) MTRGImageData *icon; -@property(nonatomic) MTRGImageData *image; -@property(nonatomic) NSArray *cards; - -@end diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGNativePromoCard.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGNativePromoCard.h deleted file mode 100644 index 3e522c1f52..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGNativePromoCard.h +++ /dev/null @@ -1,19 +0,0 @@ -// -// MTRGNativePromoCard.h -// myTargetSDK 4.6.15 -// -// Created by Andrey Seredkin on 18.10.16. -// Copyright © 2016 Mail.ru. All rights reserved. -// - -#import -#import - -@interface MTRGNativePromoCard : NSObject - -@property(nonatomic, copy) NSString *title; -@property(nonatomic, copy) NSString *descriptionText; -@property(nonatomic, copy) NSString *ctaText; -@property(nonatomic) MTRGImageData *image; - -@end diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGNativeViewsFactory.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGNativeViewsFactory.h deleted file mode 100644 index 0cea25964c..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGNativeViewsFactory.h +++ /dev/null @@ -1,49 +0,0 @@ -// -// MTRGNativeViewsFactory.h -// myTargetSDK 4.6.15 -// -// Created by Anton Bulankin on 17.11.14. -// Copyright (c) 2014 Mail.ru Group. All rights reserved. -// - -#import - - -#import -#import -#import -#import -#import -#import - -#import -#import - -#import -#import -#import - -@interface MTRGNativeViewsFactory : NSObject - -+ (MTRGNewsFeedAdView *)createNewsFeedViewWithBanner:(MTRGNativePromoBanner *)teaserBanner; - -+ (MTRGChatListAdView *)createChatListViewWithBanner:(MTRGNativePromoBanner *)teaserBanner; - -+ (MTRGContentStreamAdView *)createContentStreamViewWithBanner:(MTRGNativePromoBanner *)promoBanner; - -+ (MTRGContentWallAdView *)createContentWallViewWithBanner:(MTRGNativePromoBanner *)imageBanner; - -+ (MTRGAppwallBannerAdView *)createAppWallBannerViewWithBanner:(MTRGNativeAppwallBanner *)appWallBanner - delegate:(id )delegate; - -+ (MTRGAppwallBannerAdView *)createAppWallBannerViewWithDelegate:(id )delegate; - -+ (MTRGAppwallAdView *)createAppWallAdViewWithBanners:(NSArray *)banners; - -+ (MTRGMediaAdView *)createMediaAdView; - -+ (MTRGContentStreamCardAdView *)createContentStreamCardAdView; - -+ (MTRGPromoCardCollectionView *)createPromoCardCollectionView; - -@end diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGNavigationType.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGNavigationType.h deleted file mode 100644 index 13fefa5153..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGNavigationType.h +++ /dev/null @@ -1,9 +0,0 @@ -// -// MTRGNavigationType.h -// myTargetSDK 4.6.15 -// -// Created by Anton Bulankin on 30.05.16. -// Copyright © 2016 Mail.ru. All rights reserved. -// - -typedef enum { MTRGNavigationTypeWeb, MTRGNavigationTypeStore } MTRGNavigationType; diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGNewsFeedAdView.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGNewsFeedAdView.h deleted file mode 100644 index 11c823db03..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGNewsFeedAdView.h +++ /dev/null @@ -1,45 +0,0 @@ -// -// MTRGNewsFeedAdView.h -// myTargetSDK 4.6.15 -// -// Created by Anton Bulankin on 05.12.14. -// Copyright (c) 2014 Mail.ru Group. All rights reserved. -// - -#import -#import -#import - -@interface MTRGNewsFeedAdView : UIView - -@property(nonatomic) MTRGNativePromoBanner *banner; -@property(nonatomic) UIColor *backgroundColor; -@property(nonatomic, readonly) UILabel *ageRestrictionsLabel; -@property(nonatomic, readonly) UILabel *adLabel; - -@property(nonatomic, readonly) UIImageView *iconImageView; -@property(nonatomic, readonly) UILabel *domainLabel; -@property(nonatomic, readonly) UILabel *categoryLabel; -@property(nonatomic, readonly) UILabel *disclaimerLabel; -@property(nonatomic, readonly) MTRGStarsRatingLabel *ratingStarsLabel; -@property(nonatomic, readonly) UILabel *votesLabel; -@property(nonatomic, readonly) UIView *buttonView; -@property(nonatomic, readonly) UILabel *buttonToLabel; -@property(nonatomic, readonly) UILabel *titleLabel; - -@property(nonatomic) UIEdgeInsets contentMargins; -@property(nonatomic) UIEdgeInsets adLabelMargins; -@property(nonatomic) UIEdgeInsets ageRestrictionsMargins; -@property(nonatomic) UIEdgeInsets titleMargins; -@property(nonatomic) UIEdgeInsets domainMargins; -@property(nonatomic) UIEdgeInsets disclaimerMargins; -@property(nonatomic) UIEdgeInsets iconMargins; -@property(nonatomic) UIEdgeInsets ratingStarsMargins; -@property(nonatomic) UIEdgeInsets votesMargins; -@property(nonatomic) UIEdgeInsets buttonMargins; -@property(nonatomic) UIEdgeInsets buttonCaptionMargins; -@property(nonatomic) UIEdgeInsets categoryMargins; - -- (void)loadImages; - -@end diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGPromoCardCollectionView.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGPromoCardCollectionView.h deleted file mode 100644 index b51cff11bd..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGPromoCardCollectionView.h +++ /dev/null @@ -1,26 +0,0 @@ -// -// MTRGPromoCardCollectionView.h -// MyTargetSDK -// -// Created by Andrey Seredkin on 02.11.16. -// Copyright © 2016 Mail.ru Group. All rights reserved. -// - -#import -#import - -@protocol MTRGPromoCardCollectionViewDelegate - -- (void)onCardClick:(MTRGNativePromoCard *)card; -- (void)onCardChange:(MTRGNativePromoCard *)card; - -@end - -@interface MTRGPromoCardCollectionView : UICollectionView - -@property (nonatomic, weak) id cardCollectionViewDelegate; -@property (nonatomic, readonly) MTRGNativePromoCard *currentPromoCard; - -- (void)setCards:(NSArray *)cards; - -@end diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGPromoCardViewProtocol.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGPromoCardViewProtocol.h deleted file mode 100644 index 3a96e570f5..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGPromoCardViewProtocol.h +++ /dev/null @@ -1,24 +0,0 @@ -// -// MTRGPromoCardViewProtocol.h -// myTargetSDK 4.6.15 -// -// Created by Andrey Seredkin on 20.10.16. -// Copyright © 2016 Mail.ru. All rights reserved. -// - -#import - -@class MTRGMediaAdView; - -@protocol MTRGPromoCardViewProtocol - -@required - -@property(nonatomic, readonly) UILabel *titleLabel; -@property(nonatomic, readonly) UILabel *descriptionLabel; -@property(nonatomic, readonly) UILabel *ctaButtonLabel; -@property(nonatomic, readonly) MTRGMediaAdView *mediaAdView; - -- (CGFloat)heightWithCardWidth:(CGFloat)width; - -@end diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGStarsRatingLabel.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGStarsRatingLabel.h deleted file mode 100644 index cf8bf53b05..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGStarsRatingLabel.h +++ /dev/null @@ -1,15 +0,0 @@ -// -// MTRGStarsRatingLabel.h -// MyTargetSDK -// -// Created by Andrey Seredkin on 27.01.17. -// Copyright © 2017 Mail.ru Group. All rights reserved. -// - -#import - -@interface MTRGStarsRatingLabel : UILabel - -- (instancetype)initWithRating:(NSNumber *)rating; //rating in interval 0...5 - -@end diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGTracer.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGTracer.h deleted file mode 100644 index 174cc4b693..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MTRGTracer.h +++ /dev/null @@ -1,20 +0,0 @@ -// -// Created by Timur on 5/23/16. -// Copyright (c) 2016 Mail.ru. All rights reserved. -// - -#import - -@interface MTRGTracer : NSObject - -+ (BOOL)enabled; - -+ (void)setEnabled:(BOOL)enabled; - -@end - -extern void mtrg_tracer_i(NSString *, ...); - -extern void mtrg_tracer_d(NSString *, ...); - -extern void mtrg_tracer_e(NSString *, ...); diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MyTargetSDK.h b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MyTargetSDK.h deleted file mode 100644 index 5f167d3306..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Headers/MyTargetSDK.h +++ /dev/null @@ -1,39 +0,0 @@ -// -// MyTargetSDK.h -// myTargetSDK 4.6.15 -// -// Created by Anton Bulankin on 24.09.15. -// Copyright © 2015 Mail.ru. All rights reserved. -// - -#import - -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Info.plist b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Info.plist deleted file mode 100644 index 36b42611c1..0000000000 Binary files a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Info.plist and /dev/null differ diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Modules/module.modulemap b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Modules/module.modulemap deleted file mode 100644 index ddbadef861..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/Modules/module.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module MyTargetSDK { - umbrella header "MyTargetSDK.h" - - export * - module * { export * } -} diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/MyTargetSDK b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/MyTargetSDK deleted file mode 100644 index 1466ea0daf..0000000000 Binary files a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/MyTargetSDK and /dev/null differ diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/_CodeSignature/CodeDirectory b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/_CodeSignature/CodeDirectory deleted file mode 100644 index c2a2085fe0..0000000000 Binary files a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/_CodeSignature/CodeDirectory and /dev/null differ diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/_CodeSignature/CodeRequirements b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/_CodeSignature/CodeRequirements deleted file mode 100644 index 3659948516..0000000000 Binary files a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/_CodeSignature/CodeRequirements and /dev/null differ diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/_CodeSignature/CodeRequirements-1 b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/_CodeSignature/CodeRequirements-1 deleted file mode 100644 index d1d1126c8a..0000000000 Binary files a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/_CodeSignature/CodeRequirements-1 and /dev/null differ diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/_CodeSignature/CodeResources b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/_CodeSignature/CodeResources deleted file mode 100644 index 7ac4a26beb..0000000000 --- a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/_CodeSignature/CodeResources +++ /dev/null @@ -1,606 +0,0 @@ - - - - - files - - Headers/MTRGAdView.h - - N8L4VLJovt9mPaR2PQXVs4AsS/E= - - Headers/MTRGAppwallAdView.h - - HbEWbGW7Dhd0soxR4QZeJmB5APE= - - Headers/MTRGAppwallBannerAdView.h - - JcIpxVGxSZTVnchT9GO131I34fc= - - Headers/MTRGChatListAdView.h - - ZxOeZs7WzQvpYDSQ/54xTGybK7A= - - Headers/MTRGContentStreamAdView.h - - jUfZRQI6srZZgMnOFcjDk4xsfKk= - - Headers/MTRGContentStreamCardAdView.h - - CiKkvn2oKmS03oa1aUAY2f6Sp7o= - - Headers/MTRGContentWallAdView.h - - VArxCvwm/HDywvW4MIqRVmhluzc= - - Headers/MTRGCustomParams.h - - p4OUP2ug07587/ojWDXV29MGmGs= - - Headers/MTRGImageData.h - - wjM+ddVxkAvKHy5C9jafQj0qCP0= - - Headers/MTRGInstreamAd.h - - GlLVHUFFNNxCzj+sxkiHA00/K+Y= - - Headers/MTRGInstreamAdCompanionBanner.h - - urg96CEhV1O+BBw4jfiZPUozTIg= - - Headers/MTRGInstreamAdPlayer.h - - ZWQ6wEwYPj+nVmOVuxpK/HKrO4Y= - - Headers/MTRGInstreamAudioAd.h - - xdPhwwToMXwp+ic2pLB/9IhxIhQ= - - Headers/MTRGInstreamAudioAdPlayer.h - - eFf2Do4HRCREFb9ZAKBQnmT6+gE= - - Headers/MTRGInterstitialAd.h - - CjQN0er7Q0FIQrm0NsdxePu9m1s= - - Headers/MTRGInterstitialSliderAd.h - - Uv+cN48kqRXkWQFViN9BNZ0P1rw= - - Headers/MTRGManager.h - - cz8jsj9s093aOQepTf33lhbT00E= - - Headers/MTRGMediaAdView.h - - ZdU4xPv5qGaSRFBHWn5e/gY3eag= - - Headers/MTRGMediaData.h - - m58OzcZqK25hh8UJ/gJtZaGsSew= - - Headers/MTRGNativeAd.h - - 6i8K+JO+VdKSCFJ7PDMonnDbXkA= - - Headers/MTRGNativeAppwallAd.h - - 4GsVqKtbtMYn9cKyHFgkLFIXYws= - - Headers/MTRGNativeAppwallBanner.h - - qm/JTGqKSlvpgah2yfr/b5eDfBw= - - Headers/MTRGNativePromoBanner.h - - L/lHxVvrKuwWhsjlsVRPk+y7NlA= - - Headers/MTRGNativePromoCard.h - - qna/V3Zl8nuyQdEamuVtv5F422w= - - Headers/MTRGNativeViewsFactory.h - - nbO3rOEfMo4nXFJbxfpcfmW219M= - - Headers/MTRGNavigationType.h - - gypwF5ZWcqYYCTOgy+hebAFIgXA= - - Headers/MTRGNewsFeedAdView.h - - DRuFL1xAPz0gNqejHCYRGexkNOk= - - Headers/MTRGPromoCardCollectionView.h - - yMcFe09OQo3cKKcgo9W/eVS8YYQ= - - Headers/MTRGPromoCardViewProtocol.h - - r3YbMfSfqM+MF/bqYAo7UMcAd9Y= - - Headers/MTRGStarsRatingLabel.h - - PLLN551UEiSxEVPZWpgM1yA2/lY= - - Headers/MTRGTracer.h - - F4QdvVILWLs+i60FRx1rV6f75BU= - - Headers/MyTargetSDK.h - - fVAoYq1XzlVLP/4V7tl/T/W1ZL0= - - Info.plist - - /5U/ROC0dD+2IMSqGWXY1/jFWJs= - - Modules/module.modulemap - - O/Fp2O21lDQnsbrXbTnN9CsOCF8= - - - files2 - - Headers/MTRGAdView.h - - hash - - N8L4VLJovt9mPaR2PQXVs4AsS/E= - - hash2 - - srDGlNdEnRh2EjNE/j415t1LUaz4185Soal8FKLuaPQ= - - - Headers/MTRGAppwallAdView.h - - hash - - HbEWbGW7Dhd0soxR4QZeJmB5APE= - - hash2 - - DMiX/SpCF5AVMUORThvHPeQyQx4m+43BGGywMpob0h8= - - - Headers/MTRGAppwallBannerAdView.h - - hash - - JcIpxVGxSZTVnchT9GO131I34fc= - - hash2 - - ys7e0U0S+mfH10AjrPZn2Z6Wu26vVQaFBzdNhOFHKeM= - - - Headers/MTRGChatListAdView.h - - hash - - ZxOeZs7WzQvpYDSQ/54xTGybK7A= - - hash2 - - KjG++uNl0wbzZ/XRwfSXdPGHO6vLcLC66tdfyLsP/qc= - - - Headers/MTRGContentStreamAdView.h - - hash - - jUfZRQI6srZZgMnOFcjDk4xsfKk= - - hash2 - - OTs07taXPLxe8XIjlmYdqY71yfPkbgw3er1Hyk3YwWM= - - - Headers/MTRGContentStreamCardAdView.h - - hash - - CiKkvn2oKmS03oa1aUAY2f6Sp7o= - - hash2 - - 0eF8Sr4KimxLBbwD5ZHWKDMyzH9iPdnzQR+KpbPsgJk= - - - Headers/MTRGContentWallAdView.h - - hash - - VArxCvwm/HDywvW4MIqRVmhluzc= - - hash2 - - d/s0JakbBaQHjLkE+w1fd/Pex5NQzsDLXWAZ688Qm3M= - - - Headers/MTRGCustomParams.h - - hash - - p4OUP2ug07587/ojWDXV29MGmGs= - - hash2 - - ouo5hQJ7noao9SvRXP2gpbOEH4looHoqY++ElDOVeAE= - - - Headers/MTRGImageData.h - - hash - - wjM+ddVxkAvKHy5C9jafQj0qCP0= - - hash2 - - QMYcADkWoa85hc4MIOgJJ1g7srnjIslox5yAISbMxww= - - - Headers/MTRGInstreamAd.h - - hash - - GlLVHUFFNNxCzj+sxkiHA00/K+Y= - - hash2 - - HnDrNv1v36OlG6SSBPE4nBXcC/1icQ63fc0E68OUKJI= - - - Headers/MTRGInstreamAdCompanionBanner.h - - hash - - urg96CEhV1O+BBw4jfiZPUozTIg= - - hash2 - - J4qRh6Yzd6icTnQ8sDBU/AAJz3RU85neZcRVt2P/cn8= - - - Headers/MTRGInstreamAdPlayer.h - - hash - - ZWQ6wEwYPj+nVmOVuxpK/HKrO4Y= - - hash2 - - xB5oSDELZ7CJPlLqiSn7fe1cEt2sUsJLldqx5WrqHvg= - - - Headers/MTRGInstreamAudioAd.h - - hash - - xdPhwwToMXwp+ic2pLB/9IhxIhQ= - - hash2 - - 8lfVaGP1BomGQ/55AJlvRl7tfK6olsXZH3+sFnpZUx4= - - - Headers/MTRGInstreamAudioAdPlayer.h - - hash - - eFf2Do4HRCREFb9ZAKBQnmT6+gE= - - hash2 - - 2YMDeIReHbgSnRjaNikjktOr/S5hMTr/0epmnQCP48Y= - - - Headers/MTRGInterstitialAd.h - - hash - - CjQN0er7Q0FIQrm0NsdxePu9m1s= - - hash2 - - hUl4qJDanpeUznL7RyJBYlNP3tZ7QkDNCqPw27V45do= - - - Headers/MTRGInterstitialSliderAd.h - - hash - - Uv+cN48kqRXkWQFViN9BNZ0P1rw= - - hash2 - - yIM9qnggZdCp9ZHC7fx42Oq6+bDIyY3S+Wkf1J4uMrU= - - - Headers/MTRGManager.h - - hash - - cz8jsj9s093aOQepTf33lhbT00E= - - hash2 - - xJJAslAzwITR+Kd+HG4TXHALh+6BDDJXd4w7PWR525I= - - - Headers/MTRGMediaAdView.h - - hash - - ZdU4xPv5qGaSRFBHWn5e/gY3eag= - - hash2 - - hWSqiOZcuoDuOE4aSsGczKiVGnGoEfanhYByMz8O/RM= - - - Headers/MTRGMediaData.h - - hash - - m58OzcZqK25hh8UJ/gJtZaGsSew= - - hash2 - - A0eV/aUME1xAW7Ik1/yjo0C+ds7SeK4o1rrYq8qZ9tE= - - - Headers/MTRGNativeAd.h - - hash - - 6i8K+JO+VdKSCFJ7PDMonnDbXkA= - - hash2 - - ff9JiigLiwo+GVib+YRVEcP9PEdKC0GGaYG+4dk+YxU= - - - Headers/MTRGNativeAppwallAd.h - - hash - - 4GsVqKtbtMYn9cKyHFgkLFIXYws= - - hash2 - - KmOHu0tKX7X8Knya/bb9xqwvqoL9QufafAULje0Eev0= - - - Headers/MTRGNativeAppwallBanner.h - - hash - - qm/JTGqKSlvpgah2yfr/b5eDfBw= - - hash2 - - YjSokAuhM2/R+QhJjx0aHFShVnJNG950j0DrZRF7bCU= - - - Headers/MTRGNativePromoBanner.h - - hash - - L/lHxVvrKuwWhsjlsVRPk+y7NlA= - - hash2 - - B+5ZJ0Bw6qyMDKRThm4iixKcc5AzbfyKiAUPpku4+r4= - - - Headers/MTRGNativePromoCard.h - - hash - - qna/V3Zl8nuyQdEamuVtv5F422w= - - hash2 - - Jausma8VQBuo/X+D9oQ8YYeG30CaX2HsENJoAmDL4FA= - - - Headers/MTRGNativeViewsFactory.h - - hash - - nbO3rOEfMo4nXFJbxfpcfmW219M= - - hash2 - - wkQ+EcRurUDXVBmL9wDZZDFLJkr4Qg1k7nF9HGjhplw= - - - Headers/MTRGNavigationType.h - - hash - - gypwF5ZWcqYYCTOgy+hebAFIgXA= - - hash2 - - b5cgX+xfq6RUZNzWyWguqBSGtJ2M696/3wPBMJGoT0A= - - - Headers/MTRGNewsFeedAdView.h - - hash - - DRuFL1xAPz0gNqejHCYRGexkNOk= - - hash2 - - OI8Mp3y4VuBa2VVhZj9WkQ6fHUVetpJlrplDJIMmZew= - - - Headers/MTRGPromoCardCollectionView.h - - hash - - yMcFe09OQo3cKKcgo9W/eVS8YYQ= - - hash2 - - PFnf/DdbZbnpaJujnds/P/hZgEwewJHkwJ3DdF6SfQw= - - - Headers/MTRGPromoCardViewProtocol.h - - hash - - r3YbMfSfqM+MF/bqYAo7UMcAd9Y= - - hash2 - - o3MeVwGvWvg/tlolB9nwwQSfrf+RryAOiDAYsQBZ34w= - - - Headers/MTRGStarsRatingLabel.h - - hash - - PLLN551UEiSxEVPZWpgM1yA2/lY= - - hash2 - - P5jqiSDrAd9e375/CF0WkeZfKQeFM6d+4wkbdo5bBss= - - - Headers/MTRGTracer.h - - hash - - F4QdvVILWLs+i60FRx1rV6f75BU= - - hash2 - - Z/h8/cJEIW/5W0lo0XAW0iUOMdeWOpxGjs8miOqy3yI= - - - Headers/MyTargetSDK.h - - hash - - fVAoYq1XzlVLP/4V7tl/T/W1ZL0= - - hash2 - - Jxcu/DnPf2/A4uZ4qHnHS2APvunaL2XR+tspBKeqMdE= - - - Modules/module.modulemap - - hash - - O/Fp2O21lDQnsbrXbTnN9CsOCF8= - - hash2 - - V4e3BJDXK6SzPKCAsnitXxPt7HD52c+lSR/BrVQkkkQ= - - - - rules - - ^ - - ^.*\.lproj/ - - optional - - weight - 1000 - - ^.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^version.plist$ - - - rules2 - - .*\.dSYM($|/) - - weight - 11 - - ^ - - weight - 20 - - ^(.*/)?\.DS_Store$ - - omit - - weight - 2000 - - ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ - - nested - - weight - 10 - - ^.* - - ^.*\.lproj/ - - optional - - weight - 1000 - - ^.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Info\.plist$ - - omit - - weight - 20 - - ^PkgInfo$ - - omit - - weight - 20 - - ^[^/]+$ - - nested - - weight - 10 - - ^embedded\.provisionprofile$ - - weight - 20 - - ^version\.plist$ - - weight - 20 - - - - diff --git a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/_CodeSignature/CodeSignature b/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/_CodeSignature/CodeSignature deleted file mode 100644 index 45e7c260c9..0000000000 Binary files a/iphone/Maps/3party/MyTarget/MyTargetSDK.framework/_CodeSignature/CodeSignature and /dev/null differ diff --git a/iphone/Maps/OMaps.plist b/iphone/Maps/OMaps.plist index c092ad0037..b138f4fff9 100644 --- a/iphone/Maps/OMaps.plist +++ b/iphone/Maps/OMaps.plist @@ -85,24 +85,6 @@ CFBundleVersion 0 - Fabric - - APIKey - 2773ac2121a74ed96c8cfd4009ed7ea1eb0d2313 - Kits - - - KitInfo - - KitName - Crashlytics - - - - FacebookAppID - 185237551520383 - FacebookDisplayName - MapsWithMe, offline maps LSApplicationQueriesSchemes fbapi