forked from organicmaps/organicmaps
[ios] Leftovers cleanup
Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
parent
89799be335
commit
ddd86ca461
102 changed files with 0 additions and 3266 deletions
BIN
iphone/Maps/3party/Fabric.framework/Fabric
vendored
BIN
iphone/Maps/3party/Fabric.framework/Fabric
vendored
Binary file not shown.
|
@ -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
|
|
@ -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 <Foundation/Foundation.h>
|
||||
#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
|
||||
|
BIN
iphone/Maps/3party/Fabric.framework/Info.plist
vendored
BIN
iphone/Maps/3party/Fabric.framework/Info.plist
vendored
Binary file not shown.
|
@ -1,6 +0,0 @@
|
|||
framework module Fabric {
|
||||
umbrella header "Fabric.h"
|
||||
|
||||
export *
|
||||
module * { export * }
|
||||
}
|
28
iphone/Maps/3party/Fabric.framework/run
vendored
28
iphone/Maps/3party/Fabric.framework/run
vendored
|
@ -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 &
|
BIN
iphone/Maps/3party/Fabric.framework/uploadDSYM
vendored
BIN
iphone/Maps/3party/Fabric.framework/uploadDSYM
vendored
Binary file not shown.
|
@ -1,24 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleIconFile</key>
|
||||
<string></string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.google.${PRODUCT_NAME:rfc1034identifier}</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>${PRODUCT_NAME}</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>BNDL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string></string>
|
||||
</dict>
|
||||
</plist>
|
Binary file not shown.
|
@ -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" = "جلب";
|
|
@ -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";
|
|
@ -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";
|
|
@ -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";
|
|
@ -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";
|
|
@ -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" = "Λήψη";
|
|
@ -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";
|
|
@ -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";
|
|
@ -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";
|
|
@ -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";
|
|
@ -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";
|
|
@ -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";
|
Binary file not shown.
Before Width: | Height: | Size: 572 B |
Binary file not shown.
Before Width: | Height: | Size: 987 B |
Binary file not shown.
Before Width: | Height: | Size: 1.6 KiB |
|
@ -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" = "התקן";
|
|
@ -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";
|
|
@ -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";
|
|
@ -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";
|
|
@ -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";
|
|
@ -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" = "インストール";
|
|
@ -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" = "설치";
|
|
@ -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";
|
|
@ -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";
|
|
@ -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";
|
|
@ -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";
|
|
@ -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";
|
|
@ -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";
|
|
@ -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";
|
|
@ -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";
|
|
@ -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" = "Установить";
|
|
@ -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ť";
|
|
@ -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";
|
|
@ -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" = "ติดตั้ง";
|
|
@ -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";
|
|
@ -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" = "Установити";
|
|
@ -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";
|
|
@ -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" = "安装";
|
|
@ -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" = "安裝";
|
Binary file not shown.
|
@ -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 <Foundation/Foundation.h>
|
||||
|
||||
@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 <NSCoding>
|
||||
|
||||
// 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<GTMFetcherAuthorizationProtocol>)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
|
|
@ -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 <Foundation/Foundation.h>
|
||||
|
||||
@class GIDAuthentication;
|
||||
@class GIDProfileData;
|
||||
|
||||
// This class represents a user account.
|
||||
@interface GIDGoogleUser : NSObject <NSCoding>
|
||||
|
||||
// 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
|
|
@ -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 <Foundation/Foundation.h>
|
||||
|
||||
// This class represents the basic profile information of a GIDGoogleUser.
|
||||
@interface GIDProfileData : NSObject <NSCoding>
|
||||
|
||||
// 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
|
|
@ -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 <Foundation/Foundation.h>
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
@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 <NSObject>
|
||||
|
||||
// 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 <NSObject>
|
||||
|
||||
@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<GIDSignInDelegate> delegate;
|
||||
|
||||
// The object to be notified when sign in dispatch selection is finished.
|
||||
@property(nonatomic, weak) id<GIDSignInUIDelegate> 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
|
|
@ -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 <UIKit/UIKit.h>
|
||||
|
||||
// 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
|
|
@ -1,5 +0,0 @@
|
|||
#import "GIDAuthentication.h"
|
||||
#import "GIDGoogleUser.h"
|
||||
#import "GIDProfileData.h"
|
||||
#import "GIDSignIn.h"
|
||||
#import "GIDSignInButton.h"
|
|
@ -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"}
|
Binary file not shown.
|
@ -1,6 +0,0 @@
|
|||
framework module GoogleSignInDependencies {
|
||||
export *
|
||||
module * { export *}
|
||||
link framework "CoreGraphics"
|
||||
link framework "Security"
|
||||
link framework "SystemConfiguration"}
|
|
@ -1,15 +0,0 @@
|
|||
#import "MWMMyTargetDelegate.h"
|
||||
|
||||
@interface MWMMyTarget : NSObject
|
||||
|
||||
+ (MWMMyTarget *)manager;
|
||||
+ (void)startAdServerForbiddenCheckTimer;
|
||||
|
||||
@property(weak, nonatomic) id<MWMMyTargetDelegate> delegate;
|
||||
@property(nonatomic, readonly) NSUInteger bannersCount;
|
||||
|
||||
- (MTRGNativeAppwallBanner *)bannerAtIndex:(NSUInteger)index;
|
||||
- (void)handleBannerShowAtIndex:(NSUInteger)index;
|
||||
- (void)handleBannerClickAtIndex:(NSUInteger)index withController:(UIViewController *)controller;
|
||||
|
||||
@end
|
|
@ -1,108 +0,0 @@
|
|||
#import "MWMMyTarget.h"
|
||||
#import <MyTargetSDK/MTRGNativeAppwallAd.h>
|
||||
#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 ()<MTRGNativeAppwallAdDelegate>
|
||||
|
||||
@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
|
|
@ -1,7 +0,0 @@
|
|||
#import <MyTargetSDK/MTRGAppwallBannerAdView.h>
|
||||
|
||||
@protocol MWMMyTargetDelegate
|
||||
|
||||
- (void)onAppWallRefresh;
|
||||
|
||||
@end
|
|
@ -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 <UIKit/UIKit.h>
|
||||
#import <MyTargetSDK/MTRGCustomParams.h>
|
||||
|
||||
typedef enum : NSUInteger
|
||||
{
|
||||
MTRGAdSize_320x50 = 0,
|
||||
MTRGAdSize_300x250 = 1,
|
||||
MTRGAdSize_728x90 = 2
|
||||
} MTRGAdSize;
|
||||
|
||||
@class MTRGAdView;
|
||||
|
||||
@protocol MTRGAdViewDelegate <NSObject>
|
||||
|
||||
- (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 <MTRGAdViewDelegate> 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
|
|
@ -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 <UIKit/UIKit.h>
|
||||
#import <MyTargetSDK/MTRGNativeAppwallBanner.h>
|
||||
|
||||
@protocol MTRGAppwallAdViewDelegate <NSObject>
|
||||
|
||||
- (void)appwallAdViewOnClickWithBanner:(MTRGNativeAppwallBanner *)banner;
|
||||
|
||||
- (void)appwallAdViewOnShowWithBanner:(MTRGNativeAppwallBanner *)banner;
|
||||
|
||||
@end
|
||||
|
||||
@interface MTRGAppwallAdView : UIView
|
||||
@property(nonatomic, weak) id <MTRGAppwallAdViewDelegate> delegate;
|
||||
|
||||
- (instancetype)initWithBanners:(NSArray *)banners;
|
||||
|
||||
@end
|
|
@ -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 <Foundation/Foundation.h>
|
||||
#import <UIKit/UIKit.h>
|
||||
#import <MyTargetSDK/MTRGNativeAppwallBanner.h>
|
||||
|
||||
@class MTRGAppwallBannerAdView;
|
||||
|
||||
@protocol MTRGAppwallBannerAdViewDelegate <NSObject>
|
||||
|
||||
- (void)appWallBannerAdViewOnClickWithView:(MTRGAppwallBannerAdView *)bannerAdView;
|
||||
|
||||
- (void)appWallBannerAdViewOnCancelSelectWithView:(MTRGAppwallBannerAdView *)bannerAdView;
|
||||
|
||||
@optional
|
||||
|
||||
- (BOOL)appWallBannerAdViewAllowStartSelect:(MTRGAppwallBannerAdView *)bannerAdView;
|
||||
|
||||
@end
|
||||
|
||||
|
||||
@interface MTRGAppwallBannerAdView : UIView
|
||||
|
||||
@property(nonatomic) MTRGNativeAppwallBanner *appWallBanner;
|
||||
|
||||
- (instancetype)initWithDelegate:(id <MTRGAppwallBannerAdViewDelegate>)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
|
|
@ -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 <UIKit/UIKit.h>
|
||||
#import <MyTargetSDK/MTRGNativePromoBanner.h>
|
||||
#import <MyTargetSDK/MTRGStarsRatingLabel.h>
|
||||
|
||||
@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
|
|
@ -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 <UIKit/UIKit.h>
|
||||
#import <MyTargetSDK/MTRGNativePromoBanner.h>
|
||||
#import <MyTargetSDK/MTRGStarsRatingLabel.h>
|
||||
#import <MyTargetSDK/MTRGMediaAdView.h>
|
||||
|
||||
@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
|
|
@ -1,22 +0,0 @@
|
|||
//
|
||||
// MTRGContentStreamCardAdView.h
|
||||
// myTarget
|
||||
//
|
||||
// Created by Andrey Seredkin on 20.10.16.
|
||||
// Copyright © 2016 Mail.ru. All rights reserved.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
#import <MyTargetSDK/MTRGPromoCardViewProtocol.h>
|
||||
#import <MyTargetSDK/MTRGMediaAdView.h>
|
||||
|
||||
@interface MTRGContentStreamCardAdView : UICollectionViewCell <MTRGPromoCardViewProtocol>
|
||||
|
||||
@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
|
|
@ -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 <UIKit/UIKit.h>
|
||||
#import <MyTargetSDK/MTRGNativePromoBanner.h>
|
||||
#import <MyTargetSDK/MTRGMediaAdView.h>
|
||||
|
||||
@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
|
|
@ -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 <Foundation/Foundation.h>
|
||||
|
||||
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
|
|
@ -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 <UIKit/UIKit.h>
|
||||
#import <MyTargetSDK/MTRGMediaData.h>
|
||||
|
||||
@interface MTRGImageData : MTRGMediaData
|
||||
|
||||
@property(nonatomic, readonly) UIImage *image;
|
||||
|
||||
- (instancetype)initWithImage:(UIImage *)image;
|
||||
@end
|
|
@ -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 <UIKit/UIKit.h>
|
||||
#import <MyTargetSDK/MTRGInstreamAdPlayer.h>
|
||||
|
||||
@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 <NSObject>
|
||||
|
||||
- (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 <MTRGInstreamAdDelegate> delegate;
|
||||
@property(nonatomic, readonly) MTRGCustomParams *customParams;
|
||||
@property(nonatomic) NSUInteger videoQuality;
|
||||
@property(nonatomic) id <MTRGInstreamAdPlayer> 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<NSNumber *> *)midpointsP forVideoDuration:(NSTimeInterval)videoDuration;
|
||||
|
||||
- (void)configureMidpoints:(NSArray<NSNumber *> *)midpoints forVideoDuration:(NSTimeInterval)videoDuration;
|
||||
|
||||
- (void)configureMidpointsForVideoDuration:(NSTimeInterval)videoDuration;
|
||||
|
||||
- (NSArray<NSNumber *> *)midpoints;
|
||||
|
||||
@end
|
|
@ -1,27 +0,0 @@
|
|||
//
|
||||
// MTRGInstreamAdCompanionBanner.h
|
||||
// MyTargetSDK
|
||||
//
|
||||
// Created by Andrey Seredkin on 14.12.16.
|
||||
// Copyright © 2016 Mail.ru Group. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
@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
|
|
@ -1,43 +0,0 @@
|
|||
//
|
||||
// MTRGInstreamAdPlayer.h
|
||||
// myTarget
|
||||
//
|
||||
// Created by Anton Bulankin on 21.09.16.
|
||||
// Copyright © 2016 Mail.ru. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
@protocol MTRGInstreamAdPlayerDelegate <NSObject>
|
||||
|
||||
- (void)onAdVideoStart;
|
||||
|
||||
- (void)onAdVideoPause;
|
||||
|
||||
- (void)onAdVideoResume;
|
||||
|
||||
- (void)onAdVideoStop;
|
||||
|
||||
- (void)onAdVideoErrorWithReason:(NSString *)reason;
|
||||
|
||||
- (void)onAdVideoComplete;
|
||||
|
||||
@end
|
||||
|
||||
@protocol MTRGInstreamAdPlayer <NSObject>
|
||||
|
||||
@property(nonatomic, readonly) NSTimeInterval adVideoDuration;
|
||||
@property(nonatomic, readonly) NSTimeInterval adVideoTimeElapsed;
|
||||
@property(nonatomic, weak) id <MTRGInstreamAdPlayerDelegate> adPlayerDelegate;
|
||||
@property(nonatomic, readonly) UIView *adPlayerView;
|
||||
@property(nonatomic) float volume;
|
||||
|
||||
- (void)playAdVideoWithUrl:(NSURL *)url;
|
||||
|
||||
- (void)pauseAdVideo;
|
||||
|
||||
- (void)resumeAdVideo;
|
||||
|
||||
- (void)stopAdVideo;
|
||||
|
||||
@end
|
|
@ -1,99 +0,0 @@
|
|||
//
|
||||
// MTRGInstreamAudioAd.h
|
||||
// MyTargetSDK
|
||||
//
|
||||
// Created by Andrey Seredkin on 20.12.16.
|
||||
// Copyright © 2016 Mail.ru Group. All rights reserved.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
#import <MyTargetSDK/MTRGInstreamAudioAdPlayer.h>
|
||||
#import <MyTargetSDK/MTRGInstreamAdCompanionBanner.h>
|
||||
|
||||
@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<MTRGInstreamAdCompanionBanner *> *companionBanners;
|
||||
|
||||
@end
|
||||
|
||||
@protocol MTRGInstreamAudioAdDelegate <NSObject>
|
||||
|
||||
- (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 <MTRGInstreamAudioAdDelegate> delegate;
|
||||
@property(nonatomic, readonly) MTRGCustomParams *customParams;
|
||||
@property(nonatomic) id <MTRGInstreamAudioAdPlayer> 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<NSNumber *> *)midpointsP forAudioDuration:(NSTimeInterval)audioDuration;
|
||||
|
||||
- (void)configureMidpoints:(NSArray<NSNumber *> *)midpoints forAudioDuration:(NSTimeInterval)audioDuration;
|
||||
|
||||
- (void)configureMidpointsForAudioDuration:(NSTimeInterval)audioDuration;
|
||||
|
||||
- (NSArray<NSNumber *> *)midpoints;
|
||||
|
||||
@end
|
|
@ -1,42 +0,0 @@
|
|||
//
|
||||
// MTRGInstreamAudioAdPlayer.h
|
||||
// MyTargetSDK
|
||||
//
|
||||
// Created by Andrey Seredkin on 20.12.16.
|
||||
// Copyright © 2016 Mail.ru Group. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
@protocol MTRGInstreamAudioAdPlayerDelegate <NSObject>
|
||||
|
||||
- (void)onAdAudioStart;
|
||||
|
||||
- (void)onAdAudioPause;
|
||||
|
||||
- (void)onAdAudioResume;
|
||||
|
||||
- (void)onAdAudioStop;
|
||||
|
||||
- (void)onAdAudioErrorWithReason:(NSString *)reason;
|
||||
|
||||
- (void)onAdAudioComplete;
|
||||
|
||||
@end
|
||||
|
||||
@protocol MTRGInstreamAudioAdPlayer <NSObject>
|
||||
|
||||
@property(nonatomic, readonly) NSTimeInterval adAudioDuration;
|
||||
@property(nonatomic, readonly) NSTimeInterval adAudioTimeElapsed;
|
||||
@property(nonatomic, weak) id <MTRGInstreamAudioAdPlayerDelegate> adPlayerDelegate;
|
||||
@property(nonatomic) float volume;
|
||||
|
||||
- (void)playAdAudioWithUrl:(NSURL *)url;
|
||||
|
||||
- (void)pauseAdAudio;
|
||||
|
||||
- (void)resumeAdAudio;
|
||||
|
||||
- (void)stopAdAudio;
|
||||
|
||||
@end
|
|
@ -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 <Foundation/Foundation.h>
|
||||
#import <UIKit/UIKit.h>
|
||||
#import <MyTargetSDK/MTRGCustomParams.h>
|
||||
|
||||
@class MTRGInterstitialAd;
|
||||
|
||||
@protocol MTRGInterstitialAdDelegate <NSObject>
|
||||
|
||||
- (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 <MTRGInterstitialAdDelegate> 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
|
|
@ -1,54 +0,0 @@
|
|||
//
|
||||
// MTRGInterstitialSliderAd.h
|
||||
// MyTargetSDK
|
||||
//
|
||||
// Created by Andrey Seredkin on 10.11.16.
|
||||
// Copyright © 2016 Mail.ru Group. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import <UIKit/UIKit.h>
|
||||
#import <MyTargetSDK/MTRGCustomParams.h>
|
||||
|
||||
@class MTRGInterstitialSliderAd;
|
||||
|
||||
@protocol MTRGInterstitialSliderAdDelegate <NSObject>
|
||||
|
||||
- (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 <MTRGInterstitialSliderAdDelegate> 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
|
|
@ -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 <Foundation/Foundation.h>
|
||||
|
||||
|
||||
@interface MTRGManager : NSObject
|
||||
|
||||
+ (NSDictionary *)getFingerprintParams;
|
||||
|
||||
+ (void)trackUrl:(NSString *)trackingUrl;
|
||||
|
||||
@end
|
||||
|
|
@ -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 <UIKit/UIKit.h>
|
||||
|
||||
@interface MTRGMediaAdView : UIView
|
||||
|
||||
@property(nonatomic, readonly) UIImageView *imageView;
|
||||
@property(nonatomic, readonly) UIImageView *playImageView;
|
||||
@property(nonatomic, readonly) UIActivityIndicatorView *activityIndicatorView;
|
||||
|
||||
@end
|
|
@ -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 <Foundation/Foundation.h>
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
|
||||
@interface MTRGMediaData : NSObject
|
||||
|
||||
@property(nonatomic, readonly, copy) NSString *url;
|
||||
@property(nonatomic) id data;
|
||||
@property(nonatomic) CGSize size;
|
||||
|
||||
- (instancetype)initWithUrl:(NSString *)url;
|
||||
|
||||
@end
|
|
@ -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 <MyTargetSDK/MTRGNativePromoBanner.h>
|
||||
|
||||
@class MTRGNativeAd;
|
||||
@class MTRGCustomParams;
|
||||
|
||||
@protocol MTRGNativeAdDelegate <NSObject>
|
||||
|
||||
- (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 <MTRGNativeAdDelegate> 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<UIView *> *)clickableViews;
|
||||
|
||||
- (void)unregisterView;
|
||||
|
||||
@end
|
|
@ -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 <UIKit/UIKit.h>
|
||||
|
||||
#import <MyTargetSDK/MTRGCustomParams.h>
|
||||
#import <MyTargetSDK/MTRGNativeAppwallBanner.h>
|
||||
#import <MyTargetSDK/MTRGAppwallAdView.h>
|
||||
|
||||
|
||||
@class MTRGNativeAppwallAd;
|
||||
|
||||
@protocol MTRGNativeAppwallAdDelegate <NSObject>
|
||||
|
||||
- (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 <MTRGNativeAppwallAdDelegate> 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
|
|
@ -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 <UIKit/UIKit.h>
|
||||
#import <MyTargetSDK/MTRGImageData.h>
|
||||
|
||||
|
||||
@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
|
|
@ -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 <Foundation/Foundation.h>
|
||||
#import <MyTargetSDK/MTRGImageData.h>
|
||||
#import <MyTargetSDK/MTRGNavigationType.h>
|
||||
#import <MyTargetSDK/MTRGNativePromoCard.h>
|
||||
|
||||
@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<MTRGNativePromoCard *> *cards;
|
||||
|
||||
@end
|
|
@ -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 <Foundation/Foundation.h>
|
||||
#import <MyTargetSDK/MTRGImageData.h>
|
||||
|
||||
@interface MTRGNativePromoCard : NSObject
|
||||
|
||||
@property(nonatomic, copy) NSString *title;
|
||||
@property(nonatomic, copy) NSString *descriptionText;
|
||||
@property(nonatomic, copy) NSString *ctaText;
|
||||
@property(nonatomic) MTRGImageData *image;
|
||||
|
||||
@end
|
|
@ -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 <Foundation/Foundation.h>
|
||||
|
||||
|
||||
#import <MyTargetSDK/MTRGNativePromoBanner.h>
|
||||
#import <MyTargetSDK/MTRGNativeAppwallBanner.h>
|
||||
#import <MyTargetSDK/MTRGNewsFeedAdView.h>
|
||||
#import <MyTargetSDK/MTRGChatListAdView.h>
|
||||
#import <MyTargetSDK/MTRGContentStreamAdView.h>
|
||||
#import <MyTargetSDK/MTRGContentWallAdView.h>
|
||||
|
||||
#import <MyTargetSDK/MTRGAppwallBannerAdView.h>
|
||||
#import <MyTargetSDK/MTRGAppwallAdView.h>
|
||||
|
||||
#import <MyTargetSDK/MTRGMediaAdView.h>
|
||||
#import <MyTargetSDK/MTRGContentStreamCardAdView.h>
|
||||
#import <MyTargetSDK/MTRGPromoCardCollectionView.h>
|
||||
|
||||
@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 <MTRGAppwallBannerAdViewDelegate>)delegate;
|
||||
|
||||
+ (MTRGAppwallBannerAdView *)createAppWallBannerViewWithDelegate:(id <MTRGAppwallBannerAdViewDelegate>)delegate;
|
||||
|
||||
+ (MTRGAppwallAdView *)createAppWallAdViewWithBanners:(NSArray *)banners;
|
||||
|
||||
+ (MTRGMediaAdView *)createMediaAdView;
|
||||
|
||||
+ (MTRGContentStreamCardAdView *)createContentStreamCardAdView;
|
||||
|
||||
+ (MTRGPromoCardCollectionView *)createPromoCardCollectionView;
|
||||
|
||||
@end
|
|
@ -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;
|
|
@ -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 <UIKit/UIKit.h>
|
||||
#import <MyTargetSDK/MTRGNativePromoBanner.h>
|
||||
#import <MyTargetSDK/MTRGStarsRatingLabel.h>
|
||||
|
||||
@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
|
|
@ -1,26 +0,0 @@
|
|||
//
|
||||
// MTRGPromoCardCollectionView.h
|
||||
// MyTargetSDK
|
||||
//
|
||||
// Created by Andrey Seredkin on 02.11.16.
|
||||
// Copyright © 2016 Mail.ru Group. All rights reserved.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
#import <MyTargetSDK/MTRGNativePromoCard.h>
|
||||
|
||||
@protocol MTRGPromoCardCollectionViewDelegate <NSObject>
|
||||
|
||||
- (void)onCardClick:(MTRGNativePromoCard *)card;
|
||||
- (void)onCardChange:(MTRGNativePromoCard *)card;
|
||||
|
||||
@end
|
||||
|
||||
@interface MTRGPromoCardCollectionView : UICollectionView <UICollectionViewDelegate, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout>
|
||||
|
||||
@property (nonatomic, weak) id <MTRGPromoCardCollectionViewDelegate> cardCollectionViewDelegate;
|
||||
@property (nonatomic, readonly) MTRGNativePromoCard *currentPromoCard;
|
||||
|
||||
- (void)setCards:(NSArray<MTRGNativePromoCard *> *)cards;
|
||||
|
||||
@end
|
|
@ -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 <UIKit/UIKit.h>
|
||||
|
||||
@class MTRGMediaAdView;
|
||||
|
||||
@protocol MTRGPromoCardViewProtocol <NSObject>
|
||||
|
||||
@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
|
|
@ -1,15 +0,0 @@
|
|||
//
|
||||
// MTRGStarsRatingLabel.h
|
||||
// MyTargetSDK
|
||||
//
|
||||
// Created by Andrey Seredkin on 27.01.17.
|
||||
// Copyright © 2017 Mail.ru Group. All rights reserved.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
@interface MTRGStarsRatingLabel : UILabel
|
||||
|
||||
- (instancetype)initWithRating:(NSNumber *)rating; //rating in interval 0...5
|
||||
|
||||
@end
|
|
@ -1,20 +0,0 @@
|
|||
//
|
||||
// Created by Timur on 5/23/16.
|
||||
// Copyright (c) 2016 Mail.ru. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
@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 *, ...);
|
|
@ -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 <UIKit/UIKit.h>
|
||||
|
||||
#import <MyTargetSDK/MTRGAdView.h>
|
||||
#import <MyTargetSDK/MTRGAppwallAdView.h>
|
||||
#import <MyTargetSDK/MTRGAppwallBannerAdView.h>
|
||||
#import <MyTargetSDK/MTRGNativeAd.h>
|
||||
#import <MyTargetSDK/MTRGChatListAdView.h>
|
||||
#import <MyTargetSDK/MTRGNativePromoBanner.h>
|
||||
#import <MyTargetSDK/MTRGContentStreamAdView.h>
|
||||
#import <MyTargetSDK/MTRGContentWallAdView.h>
|
||||
#import <MyTargetSDK/MTRGCustomParams.h>
|
||||
#import <MyTargetSDK/MTRGNativeViewsFactory.h>
|
||||
#import <MyTargetSDK/MTRGImageData.h>
|
||||
#import <MyTargetSDK/MTRGNewsFeedAdView.h>
|
||||
#import <MyTargetSDK/MTRGInterstitialAd.h>
|
||||
#import <MyTargetSDK/MTRGStarsRatingLabel.h>
|
||||
#import <MyTargetSDK/MTRGManager.h>
|
||||
#import <MyTargetSDK/MTRGTracer.h>
|
||||
#import <MyTargetSDK/MTRGNativeAppwallBanner.h>
|
||||
#import <MyTargetSDK/MTRGNavigationType.h>
|
||||
#import <MyTargetSDK/MTRGInstreamAd.h>
|
||||
#import <MyTargetSDK/MTRGNativeAppwallAd.h>
|
||||
#import <MyTargetSDK/MTRGMediaAdView.h>
|
||||
#import <MyTargetSDK/MTRGNativePromoCard.h>
|
||||
#import <MyTargetSDK/MTRGPromoCardViewProtocol.h>
|
||||
#import <MyTargetSDK/MTRGContentStreamCardAdView.h>
|
||||
#import <MyTargetSDK/MTRGPromoCardCollectionView.h>
|
||||
#import <MyTargetSDK/MTRGInterstitialSliderAd.h>
|
||||
#import <MyTargetSDK/MTRGInstreamAdCompanionBanner.h>
|
||||
#import <MyTargetSDK/MTRGInstreamAudioAd.h>
|
||||
#import <MyTargetSDK/MTRGInstreamAudioAdPlayer.h>
|
Binary file not shown.
|
@ -1,6 +0,0 @@
|
|||
framework module MyTargetSDK {
|
||||
umbrella header "MyTargetSDK.h"
|
||||
|
||||
export *
|
||||
module * { export * }
|
||||
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,606 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>files</key>
|
||||
<dict>
|
||||
<key>Headers/MTRGAdView.h</key>
|
||||
<data>
|
||||
N8L4VLJovt9mPaR2PQXVs4AsS/E=
|
||||
</data>
|
||||
<key>Headers/MTRGAppwallAdView.h</key>
|
||||
<data>
|
||||
HbEWbGW7Dhd0soxR4QZeJmB5APE=
|
||||
</data>
|
||||
<key>Headers/MTRGAppwallBannerAdView.h</key>
|
||||
<data>
|
||||
JcIpxVGxSZTVnchT9GO131I34fc=
|
||||
</data>
|
||||
<key>Headers/MTRGChatListAdView.h</key>
|
||||
<data>
|
||||
ZxOeZs7WzQvpYDSQ/54xTGybK7A=
|
||||
</data>
|
||||
<key>Headers/MTRGContentStreamAdView.h</key>
|
||||
<data>
|
||||
jUfZRQI6srZZgMnOFcjDk4xsfKk=
|
||||
</data>
|
||||
<key>Headers/MTRGContentStreamCardAdView.h</key>
|
||||
<data>
|
||||
CiKkvn2oKmS03oa1aUAY2f6Sp7o=
|
||||
</data>
|
||||
<key>Headers/MTRGContentWallAdView.h</key>
|
||||
<data>
|
||||
VArxCvwm/HDywvW4MIqRVmhluzc=
|
||||
</data>
|
||||
<key>Headers/MTRGCustomParams.h</key>
|
||||
<data>
|
||||
p4OUP2ug07587/ojWDXV29MGmGs=
|
||||
</data>
|
||||
<key>Headers/MTRGImageData.h</key>
|
||||
<data>
|
||||
wjM+ddVxkAvKHy5C9jafQj0qCP0=
|
||||
</data>
|
||||
<key>Headers/MTRGInstreamAd.h</key>
|
||||
<data>
|
||||
GlLVHUFFNNxCzj+sxkiHA00/K+Y=
|
||||
</data>
|
||||
<key>Headers/MTRGInstreamAdCompanionBanner.h</key>
|
||||
<data>
|
||||
urg96CEhV1O+BBw4jfiZPUozTIg=
|
||||
</data>
|
||||
<key>Headers/MTRGInstreamAdPlayer.h</key>
|
||||
<data>
|
||||
ZWQ6wEwYPj+nVmOVuxpK/HKrO4Y=
|
||||
</data>
|
||||
<key>Headers/MTRGInstreamAudioAd.h</key>
|
||||
<data>
|
||||
xdPhwwToMXwp+ic2pLB/9IhxIhQ=
|
||||
</data>
|
||||
<key>Headers/MTRGInstreamAudioAdPlayer.h</key>
|
||||
<data>
|
||||
eFf2Do4HRCREFb9ZAKBQnmT6+gE=
|
||||
</data>
|
||||
<key>Headers/MTRGInterstitialAd.h</key>
|
||||
<data>
|
||||
CjQN0er7Q0FIQrm0NsdxePu9m1s=
|
||||
</data>
|
||||
<key>Headers/MTRGInterstitialSliderAd.h</key>
|
||||
<data>
|
||||
Uv+cN48kqRXkWQFViN9BNZ0P1rw=
|
||||
</data>
|
||||
<key>Headers/MTRGManager.h</key>
|
||||
<data>
|
||||
cz8jsj9s093aOQepTf33lhbT00E=
|
||||
</data>
|
||||
<key>Headers/MTRGMediaAdView.h</key>
|
||||
<data>
|
||||
ZdU4xPv5qGaSRFBHWn5e/gY3eag=
|
||||
</data>
|
||||
<key>Headers/MTRGMediaData.h</key>
|
||||
<data>
|
||||
m58OzcZqK25hh8UJ/gJtZaGsSew=
|
||||
</data>
|
||||
<key>Headers/MTRGNativeAd.h</key>
|
||||
<data>
|
||||
6i8K+JO+VdKSCFJ7PDMonnDbXkA=
|
||||
</data>
|
||||
<key>Headers/MTRGNativeAppwallAd.h</key>
|
||||
<data>
|
||||
4GsVqKtbtMYn9cKyHFgkLFIXYws=
|
||||
</data>
|
||||
<key>Headers/MTRGNativeAppwallBanner.h</key>
|
||||
<data>
|
||||
qm/JTGqKSlvpgah2yfr/b5eDfBw=
|
||||
</data>
|
||||
<key>Headers/MTRGNativePromoBanner.h</key>
|
||||
<data>
|
||||
L/lHxVvrKuwWhsjlsVRPk+y7NlA=
|
||||
</data>
|
||||
<key>Headers/MTRGNativePromoCard.h</key>
|
||||
<data>
|
||||
qna/V3Zl8nuyQdEamuVtv5F422w=
|
||||
</data>
|
||||
<key>Headers/MTRGNativeViewsFactory.h</key>
|
||||
<data>
|
||||
nbO3rOEfMo4nXFJbxfpcfmW219M=
|
||||
</data>
|
||||
<key>Headers/MTRGNavigationType.h</key>
|
||||
<data>
|
||||
gypwF5ZWcqYYCTOgy+hebAFIgXA=
|
||||
</data>
|
||||
<key>Headers/MTRGNewsFeedAdView.h</key>
|
||||
<data>
|
||||
DRuFL1xAPz0gNqejHCYRGexkNOk=
|
||||
</data>
|
||||
<key>Headers/MTRGPromoCardCollectionView.h</key>
|
||||
<data>
|
||||
yMcFe09OQo3cKKcgo9W/eVS8YYQ=
|
||||
</data>
|
||||
<key>Headers/MTRGPromoCardViewProtocol.h</key>
|
||||
<data>
|
||||
r3YbMfSfqM+MF/bqYAo7UMcAd9Y=
|
||||
</data>
|
||||
<key>Headers/MTRGStarsRatingLabel.h</key>
|
||||
<data>
|
||||
PLLN551UEiSxEVPZWpgM1yA2/lY=
|
||||
</data>
|
||||
<key>Headers/MTRGTracer.h</key>
|
||||
<data>
|
||||
F4QdvVILWLs+i60FRx1rV6f75BU=
|
||||
</data>
|
||||
<key>Headers/MyTargetSDK.h</key>
|
||||
<data>
|
||||
fVAoYq1XzlVLP/4V7tl/T/W1ZL0=
|
||||
</data>
|
||||
<key>Info.plist</key>
|
||||
<data>
|
||||
/5U/ROC0dD+2IMSqGWXY1/jFWJs=
|
||||
</data>
|
||||
<key>Modules/module.modulemap</key>
|
||||
<data>
|
||||
O/Fp2O21lDQnsbrXbTnN9CsOCF8=
|
||||
</data>
|
||||
</dict>
|
||||
<key>files2</key>
|
||||
<dict>
|
||||
<key>Headers/MTRGAdView.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
N8L4VLJovt9mPaR2PQXVs4AsS/E=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
srDGlNdEnRh2EjNE/j415t1LUaz4185Soal8FKLuaPQ=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGAppwallAdView.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
HbEWbGW7Dhd0soxR4QZeJmB5APE=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
DMiX/SpCF5AVMUORThvHPeQyQx4m+43BGGywMpob0h8=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGAppwallBannerAdView.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
JcIpxVGxSZTVnchT9GO131I34fc=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
ys7e0U0S+mfH10AjrPZn2Z6Wu26vVQaFBzdNhOFHKeM=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGChatListAdView.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
ZxOeZs7WzQvpYDSQ/54xTGybK7A=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
KjG++uNl0wbzZ/XRwfSXdPGHO6vLcLC66tdfyLsP/qc=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGContentStreamAdView.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
jUfZRQI6srZZgMnOFcjDk4xsfKk=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
OTs07taXPLxe8XIjlmYdqY71yfPkbgw3er1Hyk3YwWM=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGContentStreamCardAdView.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
CiKkvn2oKmS03oa1aUAY2f6Sp7o=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
0eF8Sr4KimxLBbwD5ZHWKDMyzH9iPdnzQR+KpbPsgJk=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGContentWallAdView.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
VArxCvwm/HDywvW4MIqRVmhluzc=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
d/s0JakbBaQHjLkE+w1fd/Pex5NQzsDLXWAZ688Qm3M=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGCustomParams.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
p4OUP2ug07587/ojWDXV29MGmGs=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
ouo5hQJ7noao9SvRXP2gpbOEH4looHoqY++ElDOVeAE=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGImageData.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
wjM+ddVxkAvKHy5C9jafQj0qCP0=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
QMYcADkWoa85hc4MIOgJJ1g7srnjIslox5yAISbMxww=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGInstreamAd.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
GlLVHUFFNNxCzj+sxkiHA00/K+Y=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
HnDrNv1v36OlG6SSBPE4nBXcC/1icQ63fc0E68OUKJI=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGInstreamAdCompanionBanner.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
urg96CEhV1O+BBw4jfiZPUozTIg=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
J4qRh6Yzd6icTnQ8sDBU/AAJz3RU85neZcRVt2P/cn8=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGInstreamAdPlayer.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
ZWQ6wEwYPj+nVmOVuxpK/HKrO4Y=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
xB5oSDELZ7CJPlLqiSn7fe1cEt2sUsJLldqx5WrqHvg=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGInstreamAudioAd.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
xdPhwwToMXwp+ic2pLB/9IhxIhQ=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
8lfVaGP1BomGQ/55AJlvRl7tfK6olsXZH3+sFnpZUx4=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGInstreamAudioAdPlayer.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
eFf2Do4HRCREFb9ZAKBQnmT6+gE=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
2YMDeIReHbgSnRjaNikjktOr/S5hMTr/0epmnQCP48Y=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGInterstitialAd.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
CjQN0er7Q0FIQrm0NsdxePu9m1s=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
hUl4qJDanpeUznL7RyJBYlNP3tZ7QkDNCqPw27V45do=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGInterstitialSliderAd.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
Uv+cN48kqRXkWQFViN9BNZ0P1rw=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
yIM9qnggZdCp9ZHC7fx42Oq6+bDIyY3S+Wkf1J4uMrU=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGManager.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
cz8jsj9s093aOQepTf33lhbT00E=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
xJJAslAzwITR+Kd+HG4TXHALh+6BDDJXd4w7PWR525I=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGMediaAdView.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
ZdU4xPv5qGaSRFBHWn5e/gY3eag=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
hWSqiOZcuoDuOE4aSsGczKiVGnGoEfanhYByMz8O/RM=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGMediaData.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
m58OzcZqK25hh8UJ/gJtZaGsSew=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
A0eV/aUME1xAW7Ik1/yjo0C+ds7SeK4o1rrYq8qZ9tE=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGNativeAd.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
6i8K+JO+VdKSCFJ7PDMonnDbXkA=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
ff9JiigLiwo+GVib+YRVEcP9PEdKC0GGaYG+4dk+YxU=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGNativeAppwallAd.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
4GsVqKtbtMYn9cKyHFgkLFIXYws=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
KmOHu0tKX7X8Knya/bb9xqwvqoL9QufafAULje0Eev0=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGNativeAppwallBanner.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
qm/JTGqKSlvpgah2yfr/b5eDfBw=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
YjSokAuhM2/R+QhJjx0aHFShVnJNG950j0DrZRF7bCU=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGNativePromoBanner.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
L/lHxVvrKuwWhsjlsVRPk+y7NlA=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
B+5ZJ0Bw6qyMDKRThm4iixKcc5AzbfyKiAUPpku4+r4=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGNativePromoCard.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
qna/V3Zl8nuyQdEamuVtv5F422w=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
Jausma8VQBuo/X+D9oQ8YYeG30CaX2HsENJoAmDL4FA=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGNativeViewsFactory.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
nbO3rOEfMo4nXFJbxfpcfmW219M=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
wkQ+EcRurUDXVBmL9wDZZDFLJkr4Qg1k7nF9HGjhplw=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGNavigationType.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
gypwF5ZWcqYYCTOgy+hebAFIgXA=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
b5cgX+xfq6RUZNzWyWguqBSGtJ2M696/3wPBMJGoT0A=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGNewsFeedAdView.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
DRuFL1xAPz0gNqejHCYRGexkNOk=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
OI8Mp3y4VuBa2VVhZj9WkQ6fHUVetpJlrplDJIMmZew=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGPromoCardCollectionView.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
yMcFe09OQo3cKKcgo9W/eVS8YYQ=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
PFnf/DdbZbnpaJujnds/P/hZgEwewJHkwJ3DdF6SfQw=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGPromoCardViewProtocol.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
r3YbMfSfqM+MF/bqYAo7UMcAd9Y=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
o3MeVwGvWvg/tlolB9nwwQSfrf+RryAOiDAYsQBZ34w=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGStarsRatingLabel.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
PLLN551UEiSxEVPZWpgM1yA2/lY=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
P5jqiSDrAd9e375/CF0WkeZfKQeFM6d+4wkbdo5bBss=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MTRGTracer.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
F4QdvVILWLs+i60FRx1rV6f75BU=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
Z/h8/cJEIW/5W0lo0XAW0iUOMdeWOpxGjs8miOqy3yI=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Headers/MyTargetSDK.h</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
fVAoYq1XzlVLP/4V7tl/T/W1ZL0=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
Jxcu/DnPf2/A4uZ4qHnHS2APvunaL2XR+tspBKeqMdE=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/module.modulemap</key>
|
||||
<dict>
|
||||
<key>hash</key>
|
||||
<data>
|
||||
O/Fp2O21lDQnsbrXbTnN9CsOCF8=
|
||||
</data>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
V4e3BJDXK6SzPKCAsnitXxPt7HD52c+lSR/BrVQkkkQ=
|
||||
</data>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>rules</key>
|
||||
<dict>
|
||||
<key>^</key>
|
||||
<true/>
|
||||
<key>^.*\.lproj/</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>1000</real>
|
||||
</dict>
|
||||
<key>^.*\.lproj/locversion.plist$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>1100</real>
|
||||
</dict>
|
||||
<key>^version.plist$</key>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>rules2</key>
|
||||
<dict>
|
||||
<key>.*\.dSYM($|/)</key>
|
||||
<dict>
|
||||
<key>weight</key>
|
||||
<real>11</real>
|
||||
</dict>
|
||||
<key>^</key>
|
||||
<dict>
|
||||
<key>weight</key>
|
||||
<real>20</real>
|
||||
</dict>
|
||||
<key>^(.*/)?\.DS_Store$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>2000</real>
|
||||
</dict>
|
||||
<key>^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/</key>
|
||||
<dict>
|
||||
<key>nested</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^.*</key>
|
||||
<true/>
|
||||
<key>^.*\.lproj/</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>1000</real>
|
||||
</dict>
|
||||
<key>^.*\.lproj/locversion.plist$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>1100</real>
|
||||
</dict>
|
||||
<key>^Info\.plist$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>20</real>
|
||||
</dict>
|
||||
<key>^PkgInfo$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>20</real>
|
||||
</dict>
|
||||
<key>^[^/]+$</key>
|
||||
<dict>
|
||||
<key>nested</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^embedded\.provisionprofile$</key>
|
||||
<dict>
|
||||
<key>weight</key>
|
||||
<real>20</real>
|
||||
</dict>
|
||||
<key>^version\.plist$</key>
|
||||
<dict>
|
||||
<key>weight</key>
|
||||
<real>20</real>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue