43 lines
1.2 KiB
C
Executable File
43 lines
1.2 KiB
C
Executable File
//
|
|
// ALMediationProvider.h
|
|
// AppLovinSDK
|
|
//
|
|
// Created by Thomas So on 1/28/18.
|
|
// Copyright © 2020 AppLovin Corporation. All rights reserved.
|
|
//
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/**
|
|
* @file ALMediationProvider.h
|
|
*
|
|
* Names of mediation providers.
|
|
*/
|
|
|
|
/** @brief AdMarvel */
|
|
extern NSString *const ALMediationProviderAdMarvel;
|
|
/** @brief AdMob Mediation */
|
|
extern NSString *const ALMediationProviderAdMob;
|
|
/** @brief AerServ | InMobi */
|
|
extern NSString *const ALMediationProviderAerServ;
|
|
/** @brief Appodeal */
|
|
extern NSString *const ALMediationProviderAppodeal;
|
|
/** @brief Fuse Powered */
|
|
extern NSString *const ALMediationProviderFusePowered;
|
|
/** @brief Fyber Mediation */
|
|
extern NSString *const ALMediationProviderFyber;
|
|
/** @brief HeyZap Mediation */
|
|
extern NSString *const ALMediationProviderHeyzap;
|
|
/** @brief HyprMX */
|
|
extern NSString *const ALMediationProviderHyprMX;
|
|
/** @brief ironSource */
|
|
extern NSString *const ALMediationProviderIronsource;
|
|
/** @brief MAX */
|
|
extern NSString *const ALMediationProviderMAX;
|
|
/** @brief MoPub Network Mediation */
|
|
extern NSString *const ALMediationProviderMoPub;
|
|
/** @brief Tapdaq */
|
|
extern NSString *const ALMediationProviderTapdaq;
|
|
|
|
NS_ASSUME_NONNULL_END
|