123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559 |
- //
- // Copyright © 2017 IronSource. All rights reserved.
- //
- #ifndef IRONSOURCE_H
- #define IRONSOURCE_H
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- #import "ISBannerDelegate.h"
- #import "ISRewardedVideoDelegate.h"
- #import "ISOfferwallDelegate.h"
- #import "ISInterstitialDelegate.h"
- #import "ISLogDelegate.h"
- #import "ISConfigurations.h"
- #import "ISPlacementInfo.h"
- #import "ISIntegrationHelper.h"
- #import "ISEventsReporting.h"
- #import "ISSupersonicAdsConfiguration.h"
- #import "ISSegment.h"
- #import "ISSegmentDelegate.h"
- #import "ISDemandOnlyRewardedVideoDelegate.h"
- #import "ISDemandOnlyInterstitialDelegate.h"
- #import "ISBannerSize.h"
- #import "ISImpressionDataDelegate.h"
- #import "ISConsentViewDelegate.h"
- NS_ASSUME_NONNULL_BEGIN
- #define IS_REWARDED_VIDEO @"rewardedvideo"
- #define IS_INTERSTITIAL @"interstitial"
- #define IS_OFFERWALL @"offerwall"
- #define IS_BANNER @"banner"
- static NSString * const MEDIATION_SDK_VERSION = @"7.1.4";
- static NSString * GitHash = @"a8f7e425c";
- /*
- This constant is for sending an external impression data from mopub
- */
- static NSString * const DataSource_MOPUB = @"MoPub";
- @interface IronSource : NSObject
- /**
- @abstact Retrieve a string-based representation of the SDK version.
- @discussion The returned value will be in the form of "<Major>.<Minor>.<Revision>".
- @return NSString representing the current IronSource SDK version.
- */
- + (NSString *)sdkVersion;
- /**
- @abstract Sets if IronSource SDK should track network changes.
- @discussion Enables the SDK to change the availability according to network modifications, i.e. in the case of no network connection, the availability will turn to FALSE.
-
- Default is NO.
- @param flag YES if allowed to track network changes, NO otherwise.
- */
- + (void)shouldTrackReachability:(BOOL)flag;
- /**
- @abstract Sets if IronSource SDK should allow ad networks debug logs.
- @discussion This value will be passed to the supporting ad networks.
- Default is NO.
- @param flag YES to allow ad networks debug logs, NO otherwise.
- */
- + (void)setAdaptersDebug:(BOOL)flag;
- /**
- @abstract Sets a dynamic identifier for the current user.
- @discussion This parameter can be changed throughout the session and will be received in the server-to-server ad rewarded callbacks.
-
- It helps verify AdRewarded transactions and must be set before calling showRewardedVideo.
- @param dynamicUserId Dynamic user identifier. Should be between 1-128 chars in length.
- @return BOOL that indicates if the dynamic identifier is valid.
- */
- + (BOOL)setDynamicUserId:(NSString *)dynamicUserId;
- /**
- @abstract Retrieves the device's current advertising identifier.
- @discussion Will first try to retrive IDFA, if impossible, will try to retrive IDFV.
-
- @return The device's current advertising identifier.
- */
- + (NSString *)advertiserId;
- /**
- @abstract Sets a mediation type.
- @discussion This method is used only for IronSource's SDK, and will be passed as a custom param.
-
- @param mediationType a mediation type name. Should be alphanumeric and between 1-64 chars in length.
- */
- + (void)setMediationType:(NSString *)mediationType;
- /**
- @abstract Sets a mediation segment.
- @discussion This method is used only for IronSource's SDK, and will be passed as a custom param.
-
- @param segment A segment name, which should not exceed 64 characters.
- */
- + (void)setMediationSegment:(NSString *)segment;
- /**
- @abstract Sets a segment.
- @discussion This method is used to start a session with a spesific segment.
-
- @param segment A segment object.
- */
- + (void)setSegment:(ISSegment *)segment;
- /**
- @abstract Sets the delegate for segment callback.
-
- @param delegate The 'ISSegmentDelegate' for IronSource to send callbacks to.
- */
- + (void)setSegmentDelegate:(id<ISSegmentDelegate>)delegate;
- /**
- @abstact Sets the meta data with a key and value.
- @discussion This value will be passed to the supporting ad networks.
- @param key The meta data key.
- @param value The meta data value
- */
- + (void)setMetaDataWithKey:(NSString *)key value:(NSString *)value;
- /**
- @abstact Sets the meta data with a key and values.
- @discussion This value will be passed to the supporting ad networks.
-
- @param key The meta data key.
- @param values The meta data values
-
- */
- + (void)setMetaDataWithKey:(NSString *)key values:(NSMutableArray *) values;
- /**
- @abstact used for demand only API, return the bidding data token.
- */
- + (NSString *) getISDemandOnlyBiddingData;
-
- #pragma mark - SDK Initialization
- /**
- @abstract Sets an identifier for the current user.
- @param userId User identifier. Should be between 1-64 chars in length.
- */
- + (void)setUserId:(NSString *)userId;
- /**
- @abstract Initializes IronSource's SDK with all the ad units that are defined in the platform.
- @param appKey Application key.
- */
- + (void)initWithAppKey:(NSString *)appKey;
- /**
- @abstract Initializes IronSource's SDK with the requested ad units.
- @discussion This method checks if the requested ad units are defined in the platform, and initializes them.
-
- The adUnits array should contain string values that represent the ad units.
-
- It is recommended to use predefined constansts:
-
- IS_REWARDED_VIDEO, IS_INTERSTITIAL, IS_OFFERWALL, IS_BANNER
-
- e.g: [IronSource initWithAppKey:appKey adUnits:@[IS_REWARDED_VIDEO, IS_INTERSTITIAL, IS_OFFERWALL, IS_BANNER]];
- @param appKey Application key.
- @param adUnits An array of ad units to initialize.
- */
- + (void)initWithAppKey:(NSString *)appKey adUnits:(NSArray<NSString *> *)adUnits;
- /**
- @abstract Initializes ironSource SDK in demand only mode.
- @discussion This method initializes IS_REWARDED_VIDEO and/or IS_INTERSTITIAL ad units.
- @param appKey Application key.
- @param adUnits An array containing IS_REWARDED_VIDEO and/or IS_INTERSTITIAL.
- */
- + (void)initISDemandOnly:(NSString *)appKey adUnits:(NSArray<NSString *> *)adUnits;
- #pragma mark - Rewarded Video
- /**
- @abstract Sets the delegate for rewarded video callbacks.
- @param delegate The 'ISRewardedVideoDelegate' for IronSource to send callbacks to.
- */
- + (void)setRewardedVideoDelegate:(id<ISRewardedVideoDelegate>)delegate;
- /**
- @abstract Shows a rewarded video using the default placement.
- @param viewController The UIViewController to display the rewarded video within.
- */
- + (void)showRewardedVideoWithViewController:(UIViewController *)viewController;
- /**
- @abstract Shows a rewarded video using the provided placement name.
- @param viewController The UIViewController to display the rewarded video within.
- @param placementName The placement name as was defined in the platform. If nil is passed, a default placement will be used.
- */
- + (void)showRewardedVideoWithViewController:(UIViewController *)viewController placement:(nullable NSString *)placementName;
- /**
- @abstract Determine if a locally cached rewarded video exists on the mediation level.
- @discussion A return value of YES here indicates that there is a cached rewarded video for one of the ad networks.
- @return YES if rewarded video is ready to be played, NO otherwise.
- */
- + (BOOL)hasRewardedVideo;
- /**
- @abstract Verify if a certain placement has reached its ad limit.
- @discussion This is to ensure you don’t portray the Rewarded Video button when the placement has been capped or paced and thus will not serve the video ad.
- @param placementName The placement name as was defined in the platform.
- @return YES if capped or paced, NO otherwise.
- */
- + (BOOL)isRewardedVideoCappedForPlacement:(NSString *)placementName;
- /**
- @abstract Retrive an object containing the placement's reward name and amount.
- @param placementName The placement name as was defined in the platform.
- @return ISPlacementInfo representing the placement's information.
- */
- + (ISPlacementInfo *)rewardedVideoPlacementInfo:(NSString *)placementName;
- /**
- @abstract Enables sending server side parameters on successful rewarded video
-
- @param parameters A dictionary containing the parameters.
- */
- + (void)setRewardedVideoServerParameters:(NSDictionary *)parameters;
- /**
- @abstract Disables sending server side parameters on successful rewarded video
- */
- + (void)clearRewardedVideoServerParameters;
- #pragma mark - Demand Only Rewarded Video
- /**
- @abstract Sets the delegate for demand only rewarded video callbacks.
- @param delegate The 'ISDemandOnlyRewardedVideoDelegate' for IronSource to send callbacks to.
- */
- + (void)setISDemandOnlyRewardedVideoDelegate:(id<ISDemandOnlyRewardedVideoDelegate>)delegate;
- /**
- @abstract Loads a demand only rewarded video for a non bidder instance.
- @discussion This method will load a demand only rewarded video ad for a non bidder instance.
- @param instanceId The demand only instance id to be used to display the rewarded video.
- */
- + (void)loadISDemandOnlyRewardedVideo:(NSString *)instanceId;
- /**
- @abstract Loads a demand only rewarded video for a bidder instance.
- @discussion This method will load a demand only rewarded video ad for a bidder instance.
- @param instanceId The demand only instance id to be used to display the rewarded video.
- */
- + (void)loadISDemandOnlyRewardedVideoWithAdm:(NSString *)instanceId adm:(NSString *)adm;
- /**
- @abstract Shows a demand only rewarded video using the default placement.
- @param viewController The UIViewController to display the rewarded video within.
- @param instanceId The demand only instance id to be used to display the rewarded video.
- */
- + (void)showISDemandOnlyRewardedVideo:(UIViewController *)viewController instanceId:(NSString *)instanceId;
- /**
- @abstract Determine if a locally cached demand only rewarded video exists for an instance id.
- @discussion A return value of YES here indicates that there is a cached rewarded video for the instance id.
- @param instanceId The demand only instance id to be used to display the rewarded video.
- @return YES if rewarded video is ready to be played, NO otherwise.
- */
- + (BOOL)hasISDemandOnlyRewardedVideo:(NSString *)instanceId;
- #pragma mark - Interstitial
- /**
- @abstract Sets the delegate for interstitial callbacks.
- @param delegate The 'ISInterstitialDelegate' for IronSource to send callbacks to.
- */
- + (void)setInterstitialDelegate:(id<ISInterstitialDelegate>)delegate;
- /**
- @abstract Loads an interstitial.
- @discussion This method will load interstitial ads from the underlying ad networks according to their priority.
- */
- + (void)loadInterstitial;
- /**
- @abstract Show a rewarded video using the default placement.
- @param viewController The UIViewController to display the interstitial within.
- */
- + (void)showInterstitialWithViewController:(UIViewController *)viewController;
- /**
- @abstract Show a rewarded video using the provided placement name.
- @param viewController The UIViewController to display the interstitial within.
- @param placementName The placement name as was defined in the platform. If nil is passed, a default placement will be used.
- */
- + (void)showInterstitialWithViewController:(UIViewController *)viewController placement:(nullable NSString *)placementName;
- /**
- @abstract Determine if a locally cached interstitial exists on the mediation level.
- @discussion A return value of YES here indicates that there is a cached interstitial for one of the ad networks.
- @return YES if there is a locally cached interstitial, NO otherwise.
- */
- + (BOOL)hasInterstitial;
- /**
- @abstract Verify if a certain placement has reached its ad limit.
- @discussion This is to ensure you don’t try to show interstitial when the placement has been capped or paced and thus will not serve the interstitial ad.
- @param placementName The placement name as was defined in the platform.
- @return YES if capped or paced, NO otherwise.
- */
- + (BOOL)isInterstitialCappedForPlacement:(NSString *)placementName;
- #pragma mark - Demand Only Interstitial
- /**
- @abstract Sets the delegate for demand only interstitial callbacks.
- @param delegate The 'ISDemandOnlyInterstitialDelegate' for IronSource to send callbacks to.
- */
- + (void)setISDemandOnlyInterstitialDelegate:(id<ISDemandOnlyInterstitialDelegate>)delegate;
- /**
- @abstract Loads a demand only interstitial.
- @discussion This method will load a demand only interstitial ad.
- @param instanceId The demand only instance id to be used to display the interstitial.
- */
- + (void)loadISDemandOnlyInterstitial:(NSString *)instanceId;
- /**
- @abstract Loads a demand only interstitial bidder instance.
- @discussion This method will load a demand only interstitial ad bidder instance.
- @param instanceId The demand only instance id to be used to display the interstitial.
- */
- + (void)loadISDemandOnlyInterstitialWithAdm:(NSString *)instanceId adm:(NSString *)adm;
- /**
- @abstract Show a demand only interstitial using the default placement.
- @param viewController The UIViewController to display the interstitial within.
- @param instanceId The demand only instance id to be used to display the interstitial.
- */
- + (void)showISDemandOnlyInterstitial:(UIViewController *)viewController instanceId:(NSString *)instanceId;
- /**
- @abstract Determine if a locally cached interstitial exists for a demand only instance id.
- @discussion A return value of YES here indicates that there is a cached interstitial for the instance id.
- @param instanceId The demand only instance id to be used to display the interstitial.
- @return YES if there is a locally cached interstitial, NO otherwise.
- */
- + (BOOL)hasISDemandOnlyInterstitial:(NSString *)instanceId;
- #pragma mark - Offerwall
- /**
- @abstract Sets the delegate for offerwall callbacks.
- @param delegate The 'ISOfferwallDelegate' for IronSource to send callbacks to.
- */
- + (void)setOfferwallDelegate:(id<ISOfferwallDelegate>)delegate;
- /**
- @abstract Show an offerwall using the default placement.
- @param viewController The UIViewController to display the offerwall within.
- */
- + (void)showOfferwallWithViewController:(UIViewController *)viewController;
- /**
- @abstract Show an offerwall using the provided placement name.
- @param viewController The UIViewController to display the offerwall within.
- @param placementName The placement name as was defined in the platform. If nil is passed, a default placement will be used.
- */
- + (void)showOfferwallWithViewController:(UIViewController *)viewController placement:(nullable NSString *)placementName;
- /**
- @abstract Retrive information on the user’s total credits and any new credits the user has earned.
- @discussion The function can be called at any point during the user’s engagement with the app.
- */
- + (void)offerwallCredits;
- /**
- @abstract Determine if the offerwall is prepared.
- @return YES if there is an available offerwall, NO otherwise.
- */
- + (BOOL)hasOfferwall;
- #pragma mark - Banner
- /**
- @abstract Sets the delegate for banner callbacks.
-
- @param delegate The 'ISBannerDelegate' for IronSource to send callbacks to.
- */
- + (void)setBannerDelegate:(id<ISBannerDelegate>)delegate;
- /**
- @abstract Loads a banner using the default placement.
- @discussion This method will load banner ads of the requested size from the underlying ad networks according to their priority.
-
- The size should contain ISBannerSize value that represent the required banner ad size.
- e.g. [IronSource loadBannerWithViewController:self size:ISBannerSize_BANNER];
-
- Custom banner size:
- ISBannerSize* bannerSize = [[ISBannerSize alloc] initWithWidth:320 andHeight:50];
- [IronSource loadBannerWithViewController:self size:bannerSize];
-
- @param viewController The UIViewController to display the banner within.
- @param size The required banner ad size
- */
- + (void)loadBannerWithViewController:(UIViewController *)viewController size:(ISBannerSize *)size;
- /**
- @abstract Loads a banner using the provided placement name.
- @discussion This method will load banner ads of the requested size from the underlying ad networks according to their priority.
-
- The size should contain ISBannerSize value that represent the required banner ad size.
- e.g. [IronSource loadBannerWithViewController:self size:ISBannerSize_BANNER placement:@"your_placement_name"];
-
- Custom banner size:
- ISBannerSize* bannerSize = [[ISBannerSize alloc] initWithWidth:320 andHeight:50];
- [IronSource loadBannerWithViewController:self size:bannerSize placement:@"your_placement_name"];
-
- @param viewController The UIViewController to display the banner within.
- @param size The required banner ad size
- @param placementName The placement name as was defined in the platform. If nil is passed, the default placement will be used.
- */
- + (void)loadBannerWithViewController:(UIViewController *)viewController size:(ISBannerSize *)size placement:(nullable NSString *)placementName;
- /**
- @abstract Removes the banner from memory.
- @param banner The ISBannerView to remove.
- */
- + (void)destroyBanner:(ISBannerView *)banner;
- /**
- @abstract Verify if a certain placement has reached its ad limit.
- @discussion This is to ensure you don’t try to load a banner when the placement has been capped or paced and thus will not serve the banner ad.
-
- @param placementName The placement name as was defined in the platform.
- @return YES if capped or paced, NO otherwise.
- */
- + (BOOL)isBannerCappedForPlacement:(NSString *)placementName;
- #pragma mark - Logging
- /**
- @abstract Sets the delegate for log callbacks.
- @param delegate The 'ISLogDelegate' for IronSource to send callbacks to.
- */
- + (void)setLogDelegate:(id<ISLogDelegate>)delegate;
- + (void)setConsent:(BOOL)consent;
- #pragma mark - Impression Data
- /**
- @abstract Sets the delegate for impression data callbacks.
- @param delegate The 'ISImpressionDataDelegate' for IronSource to send callbacks to.
- */
- + (void)setImpressionDataDelegate:(id<ISImpressionDataDelegate>)delegate __attribute__((deprecated("use addImpressionDataDelegate instead")));
- /**
- @abstract Adds the delegate for impression data callbacks.
- @param delegate The 'ISImpressionDataDelegate' for IronSource to send callbacks to.
- */
- + (void)addImpressionDataDelegate:(id<ISImpressionDataDelegate>)delegate;
- /**
- @abstract Ad revenue data
-
- @param dataSource the external source id from which the impression data is sent.
- @param impressionData the impression data
- */
- + (void)setAdRevenueDataWithDataSource:(NSString *)dataSource
- impressionData:(NSData *)impressionData;
- /**
- @abstract Removes the delegate from impression data callbacks.
- @param delegate The 'ISImpressionDataDelegate' for IronSource to send callbacks to.
- */
- + (void)removeImpressionDataDelegate:(id<ISImpressionDataDelegate>)delegate;
- #pragma mark - Consent View
- /**
- @abstract Sets the delegate for consent view callbacks.
-
- @param delegate The 'ISConsentViewDelegate' for IronSource to send callbacks to.
- */
- + (void)setConsentViewWithDelegate:(id<ISConsentViewDelegate>)delegate;
- /**
- @abstract Load consent view.
-
- @param consentViewType The type of the view (pre/post).
- */
- + (void)loadConsentViewWithType:(NSString *)consentViewType;
- /**
- @abstract Show consent view after load.
-
- @param consentViewType The type of the view (pre/post).
- */
- + (void)showConsentViewWithViewController:(UIViewController *)viewController andType:(NSString *)consentViewType;
- #pragma mark - Conversion Value (CV)
- /**
- @abstract get current conversion value
- */
- + (NSNumber *)getConversionValue;
- @end
- NS_ASSUME_NONNULL_END
- #endif
|