미디에이션과 myTarget 통합

This guide shows you how to use the Google Mobile Ads SDK to load and display ads from myTarget using AdMob Mediation, covering waterfall integrations. It covers how to add myTarget to an ad unit's mediation configuration, and how to integrate the myTarget SDK and adapter into an iOS app.

Supported integrations and ad formats

The mediation adapter for myTarget has the following capabilities:

Integration
Bidding
Waterfall
Formats
Banner
Interstitial
Rewarded
Native

Requirements

  • iOS deployment target of 12.0 or higher

Step 1: Set up configurations in myTarget UI

먼저 myTarget 계정에 가입하거나 로그인합니다. 헤더에서 을 클릭하여 앱 페이지로 이동합니다. 앱 추가를 클릭하여 앱을 추가합니다.

그런 다음 앱의 iTunes URL 을 입력합니다.

앱을 추가할 때 myTarget에서 광고 단위를 만들어야 절차를 완료할 수 있습니다.

사용 가능한 광고 형식에서 BANNER를 선택한 다음 BANNER 버튼을 클릭합니다.

전면 광고

사용 가능한 광고 형식에서 전면 광고를 선택한 다음 광고 단위 추가 버튼을 클릭합니다.

리워드 제공됨

사용 가능한 광고 형식에서 보상형 동영상을 선택한 다음 광고 단위 추가 버튼을 클릭합니다.

네이티브

사용 가능한 광고 형식에서 NATIVE를 선택한 다음 광고 단위 추가를 클릭합니다.

광고 단위의 세부정보 페이지에서 광고 단위 설정에 있는 slot_id로 있는 슬롯 ID를 기록해 둡니다. 이 슬롯 ID는 다음 섹션에서 AdMob 광고 단위를 설정하는 데 사용됩니다.

AdMob 광고 단위 ID를 설정하려면 slot_id 외에 myTarget 영구 액세스 토큰도 필요합니다. 프로필 탭으로 이동하여 액세스 토큰을 선택합니다. 토큰 생성 또는 토큰 표시를 클릭하여 myTarget 영구 액세스 토큰을 확인합니다.

테스트 모드 사용 설정

myTarget UI에 테스트 기기를 추가하고 구성하려면 myTarget 문서의 안내를 따르세요.

Step 2: Set up myTarget demand in AdMob UI

광고 단위에 대한 미디에이션 설정 구성

myTarget 를 광고 단위의 미디에이션 구성에 추가해야 합니다.

먼저 AdMob 계정에 로그인합니다. 그런 다음 미디에이션 탭으로 이동합니다. 수정할 기존 미디에이션 그룹이 있는 경우 해당 미디에이션 그룹의 이름을 클릭하여 수정한 후 myTarget 광고 소스로 추가로 건너뜁니다.

새 미디에이션 그룹을 만들려면 미디에이션 그룹 만들기를 선택합니다.

광고 형식과 플랫폼을 입력하고 계속을 클릭합니다.

미디에이션 그룹에 이름을 지정하고 타겟팅할 위치를 선택합니다. 미디에이션 그룹 상태를 사용으로 설정한 다음 광고 단위 추가를 클릭합니다.

이 미디에이션 그룹을 하나 이상의 기존AdMob 광고 단위와 연결합니다. 그런 다음 완료를 클릭합니다.

이제 광고 단위 카드가 선택한 광고 단위로 채워진 것을 볼 수 있습니다.

광고 소스로 myTarget 추가

광고 소스 섹션의 폭포식 구조 카드에서 광고 소스 추가를 선택합니다. 그런 다음 myTarget을 선택합니다.

myTarget를 선택하고 최적화 스위치를 사용 설정합니다. 이전 섹션에서 가져온 Permanent Access Token을 입력하여myTarget에 대해 광고 소스 최적화를 설정합니다. 그런 다음myTarget 에 eCPM 값을 입력하고 계속을 클릭합니다.

이미 myTarget에 대한 매핑이 있는 경우 해당 매핑을 선택할 수 있습니다. 그렇지 않으면 매핑 추가를 클릭합니다.

그런 다음 이전 섹션에서 얻은 Slot ID를 입력합니다. 그런 다음 완료를 클릭합니다.

Add Mail.ru to GDPR and US state regulations ad partners list

GDPR 설정미국 주 규정 설정 Mail.ru 를 AdMob UI의 GDPR 및 미국 주 규정 광고 파트너 목록에 추가합니다.

Step 3: Import the myTarget SDK and adapter

  • Add the following line to your project's Podfile:

    pod 'GoogleMobileAdsMediationMyTarget'
    
  • From the command line run:

    pod install --repo-update

Manual integration

  • Download the latest version of the myTarget SDK.
  • Download the latest version of the myTarget adapter from the download link in the Changelog and link MyTargetAdapter.framework in your project.
  • Add the following frameworks to your project:
    • CoreLocation
    • CoreTelephony
    • CoreMedia
    • SystemConfiguration
    • StoreKit
    • AdSupport
    • SafariServices
    • AVFoundation

Step 4: Implement privacy settings on myTarget SDK

Under the Google EU User Consent Policy, you must ensure that certain disclosures are given to, and consents obtained from, users in the European Economic Area (EEA) regarding the use of device identifiers and personal data. This policy reflects the requirements of the EU ePrivacy Directive and the General Data Protection Regulation (GDPR). When seeking consent, you must identify each ad network in your mediation chain that may collect, receive, or use personal data and provide information about each network's use. Google currently is unable to pass the user's consent choice to such networks automatically.

In SDK version 4.7.9, myTarget added a user consent API to support privacy requirements. The following sample code shows how to pass this consent information to the myTarget SDK. If you choose to call this method, it is recommended that you do so prior to requesting ads through the Google Mobile Ads SDK.

Swift

import MyTargetSDK
// ...

MTRGPrivacy.setUserConsent(true)

Objective-C

#import <MyTargetSDK/MyTargetSDK.h>
// ...

[MTRGPrivacy setUserConsent:YES];

Additionally, if the user is known to be in an age-restricted category, you can use the following code to pass this consent information to the myTarget SDK.

Swift

import MyTargetSDK
// ...

MTRGPrivacy.setUserAgeRestricted(true)

Objective-C

#import <MyTargetSDK/MyTargetSDK.h>
// ...

[MTRGPrivacy setUserAgeRestricted:YES];

See myTarget's Privacy and GDPR guide for more information and the values that can be provided in the method.

US states privacy laws

U.S. states privacy laws require giving users the right to opt out of the "sale" of their "personal information" (as the law defines those terms), with the opt-out offered via a prominent "Do Not Sell My Personal Information" link on the "selling" party's homepage. The U.S. states privacy laws compliance guide offers the ability to enable restricted data processing for Google ad serving, but Google is unable to apply this setting to each ad network in your mediation chain. Therefore, you must identify each ad network in your mediation chain that may participate in the sale of personal information and follow guidance from each of those networks to ensure compliance.

In SDK version 5.7.0, myTarget added a user consent API to support privacy requirements. The following sample code shows how to pass this consent information to the myTarget SDK. If you choose to call this method, it is recommended that you do so prior to requesting ads through the Google Mobile Ads SDK.

Swift

import MyTargetSDK
// ...

MTRGPrivacy.setCcpaUserConsent(true)

Objective-C

#import <MyTargetSDK/MyTargetSDK.h>
// ...

[MTRGPrivacy setCcpaUserConsent:YES];

Contact myTarget support for more information and the values that can be provided in the method.

Step 5: Add required code

SKAdNetwork integration

Follow myTarget's documentation to add the SKAdNetwork identifiers to your project's Info.plist file.

Step 6: Test your implementation

테스트 광고 사용 설정

AdMob 용 테스트 기기를 등록하고 myTarget UI에서 테스트 모드를 사용 설정해야 합니다.

테스트 광고 확인

myTarget에서 테스트 광고를 수신하고 있는지 확인하려면 광고 검사기에서 myTarget (Waterfall) 광고 소스를 사용하여 단일 광고 소스 테스트를 사용 설정하세요.

Optional steps

Network-specific parameters

The myTarget adapter supports isDebugMode, an optional extra to enable logging which has a default value of YES. This parameter can be passed to the adapter using the GADMAdapterMyTargetExtras class and must be set on every ad request. Here's how to set it:

Swift

let request = GADRequest()
let extras = GADMAdapterMyTargetExtras()
extras.isDebugMode = false
adRequest.register(extras)

Objective-C

GADRequest *request = [GADRequest request];
GADMAdapterMyTargetExtras * extras = [[GADMAdapterMyTargetExtras alloc] init];
extras.isDebugMode = NO;
[request registerAdNetworkExtras:extras];

Using native ads

Ad rendering

The myTarget adapter returns its native ads as GADNativeAd objects. It populates the following native ads field descriptions for a GADNativeAd.

Field Populated by myTarget adapter
Headline Always
Image Always
Body Always
App icon Always
Call to action Always
Star rating Not guaranteed
Store Not guaranteed
Price Not guaranteed
Logo Not guaranteed
Advertiser Always

Impression and click tracking

The Google Mobile Ads SDK uses the myTarget SDK's callbacks for impression and click tracking, so the reports from both sources should match up with few to no discrepancies.

Error codes

If the adapter fails to receive an ad from myTarget, you can check the underlying error from the ad response using GADResponseInfo.adNetworkInfoArray under the following classes:

GADMAdapterMyTarget
GADMediationAdapterMyTargetNative
GADMediationAdapterMyTargetRewarded

Here are the codes and accompanying messages thrown by the myTarget adapter when an ad fails to load:

Error code Reason
100 myTarget SDK does not yet have an ad available.
101 myTarget server parameters configured in the AdMob UI are missing/invalid.
102 myTarget Adapter does not support the ad format being requested.
103 Tried to show a myTarget ad that is not loaded.
104 The requested ad size does not match a myTarget supported banner size.
105 Missing required native ad assets.

myTarget iOS Mediation Adapter Changelog

Version 5.21.4.0

  • Verified compatibility with myTarget SDK version 5.21.4.

Built and tested with:

  • Google Mobile Ads SDK version 11.5.0.
  • MyTarget SDK version 5.21.4.

Version 5.21.3.0

  • Verified compatibility with myTarget SDK version 5.21.3.

Built and tested with:

  • Google Mobile Ads SDK version 11.5.0.
  • MyTarget SDK version 5.21.3.

Version 5.21.2.0

  • Verified compatibility with myTarget SDK version 5.21.2.

Built and tested with:

  • Google Mobile Ads SDK version 11.3.0.
  • MyTarget SDK version 5.21.2.

Version 5.21.1.0

  • Verified compatibility with myTarget SDK version 5.21.1.

Built and tested with:

  • Google Mobile Ads SDK version 11.2.0.
  • MyTarget SDK version 5.21.1.

Version 5.21.0.1

  • Now requires minimum iOS version 12.0.
  • Now requires Google Mobile Ads SDK version 11.0 or higher.
  • Included Info.plist in the frameworks within MyTargetAdapter.xcframework.

Built and tested with:

  • Google Mobile Ads SDK version 11.0.1.
  • MyTarget SDK version 5.21.0.

Version 5.21.0.0

  • Verified compatibility with myTarget SDK version 5.21.0.

Built and tested with:

  • Google Mobile Ads SDK version 11.0.1.
  • MyTarget SDK version 5.21.0.

Version 5.20.2.0

  • Verified compatibility with myTarget SDK version 5.20.2.

Built and tested with:

  • Google Mobile Ads SDK version 11.0.0.
  • MyTarget SDK version 5.20.2.

Version 5.20.1.0

  • Verified compatibility with myTarget SDK version 5.20.1.

Built and tested with:

  • Google Mobile Ads SDK version 10.14.0.
  • MyTarget SDK version 5.20.1.

Version 5.19.0.0

  • Verified compatibility with myTarget SDK version 5.19.0.
  • Now requires minimum iOS version 12.4.

Built and tested with:

  • Google Mobile Ads SDK version 10.8.0.
  • MyTarget SDK version 5.19.0.

Version 5.18.0.0

  • Verified compatibility with myTarget SDK version 5.18.0.

Built and tested with:

  • Google Mobile Ads SDK version 10.7.0.
  • MyTarget SDK version 5.18.0.

Version 5.17.5.0

  • Verified compatibility with myTarget SDK version 5.17.5.
  • Removed support of the armv7 architecture.
  • Now requires minimum iOS version 11.0.
  • Now requires Google Mobile Ads SDK version 10.4.0 or higher.

Built and tested with:

  • Google Mobile Ads SDK version 10.5.0.
  • MyTarget SDK version 5.17.5.

Version 5.17.4.0

  • Verified compatibility with myTarget SDK version 5.17.4.
  • Now requires Google Mobile Ads SDK version 10.0.0 or higher.

Built and tested with:

  • Google Mobile Ads SDK version 10.2.0.
  • MyTarget SDK version 5.17.4.

Version 5.16.0.0

  • Updated the adapter to use the didRewardUser API.
  • Now requires Google Mobile Ads SDK version 9.8.0 or higher.
  • Verified compatibility with myTarget SDK version 5.16.0.

Built and tested with:

  • Google Mobile Ads SDK version 9.10.0.
  • MyTarget SDK version 5.16.0.

Version 5.15.2.0

  • Verified compatibility with myTarget SDK version 5.15.2.

Built and tested with:

  • Google Mobile Ads SDK version 9.5.0.
  • MyTarget SDK version 5.15.2.

Version 5.15.1.0

  • Verified compatibility with myTarget SDK version 5.15.1.

Built and tested with:

  • Google Mobile Ads SDK version 9.2.0.
  • MyTarget SDK version 5.15.1.

Version 5.15.0.1

  • Added support for the arm64 simulator architecture.

Built and tested with:

  • Google Mobile Ads SDK version 9.0.0.
  • MyTarget SDK version 5.15.0.

Version 5.15.0.0

  • Verified compatibility with myTarget SDK version 5.15.0.
  • Verified compatibility with Google Mobile Ads SDK version 9.0.0.
  • Now requires Google Mobile Ads SDK version 9.0.0 or higher.

Built and tested with:

  • Google Mobile Ads SDK version 9.0.0.
  • MyTarget SDK version 5.15.0.

Version 5.14.4.0

  • Verified compatibility with myTarget SDK version 5.14.4.

Built and tested With:

  • Google Mobile Ads SDK version 8.13.0.
  • MyTarget SDK version 5.14.4.

Version 5.14.3.0

  • Verified compatibility with myTarget SDK version 5.14.3.
  • Added support for setting parameters in GADMAdapterMyTargetExtras.
  • Added support for passing extras in rewarded ads.

Built and tested With:

  • Google Mobile Ads SDK version 8.13.0.
  • MyTarget SDK version 5.14.3.

Version 5.14.2.0

  • Verified compatibility with myTarget SDK version 5.14.2.

Built and tested With:

  • Google Mobile Ads SDK version 8.12.0.
  • MyTarget SDK version 5.14.2.

Version 5.14.1.0

  • Verified compatibility with myTarget SDK version 5.14.1.

Built and tested With:

  • Google Mobile Ads SDK version 8.11.0.
  • MyTarget SDK version 5.14.1.

Version 5.14.0.0

  • Verified compatibility with myTarget SDK version 5.14.0.
  • Now requires minimum iOS version 10.0.

Built and tested With:

  • Google Mobile Ads SDK version 8.11.0.
  • MyTarget SDK version 5.14.0.

Version 5.13.1.0

  • Verified compatibility with myTarget SDK version 5.13.1.

Built and tested With:

  • Google Mobile Ads SDK version 8.10.0.
  • MyTarget SDK version 5.13.1.

Version 5.13.0.0

  • Verified compatibility with myTarget SDK version 5.13.0.

Built and tested With:

  • Google Mobile Ads SDK version 8.9.0.
  • MyTarget SDK version 5.13.0.

Version 5.12.1.0

  • Verified compatibility with myTarget SDK version 5.12.1.

Built and tested With:

  • Google Mobile Ads SDK version 8.8.0.
  • MyTarget SDK version 5.12.1.

Version 5.12.0.0

  • Verified compatibility with myTarget SDK version 5.12.0.

Built and tested With:

  • Google Mobile Ads SDK version 8.7.0.
  • MyTarget SDK version 5.12.0.

Version 5.11.2.0

  • Verified compatibility with myTarget SDK version 5.11.2.

Built and tested With:

  • Google Mobile Ads SDK version 8.5.0.
  • MyTarget SDK version 5.11.2.

Version 5.11.1.0

  • Verified compatibility with myTarget SDK version 5.11.1.
  • Relaxed dependency to Google Mobile Ads SDK version 8.0.0 or higher.

Built and tested With:

  • Google Mobile Ads SDK version 8.5.0.
  • MyTarget SDK version 5.11.1.

Version 5.11.0.0

  • Verified compatibility with myTarget SDK version 5.11.0.
  • Now requires Google Mobile Ads SDK version 8.4.0 or higher.

Built and tested With:

  • Google Mobile Ads SDK version 8.4.0.
  • MyTarget SDK version 5.11.0.

Version 5.10.3.0

  • Verified compatibility with myTarget SDK version 5.10.3.
  • Now requires Google Mobile Ads SDK version 8.3.0 or higher.

Built and tested With:

  • Google Mobile Ads SDK version 8.3.0.
  • MyTarget SDK version 5.10.3.

Version 5.10.1.0

  • Verified compatibility with myTarget SDK version 5.10.1.

Built and tested With:

  • Google Mobile Ads SDK version 8.1.0.
  • MyTarget SDK version 5.10.1.

Version 5.10.0.0

  • Verified compatibility with myTarget SDK version 5.10.0.
  • Now requires Google Mobile Ads SDK version 8.1.0 or higher.
  • Updated the adapter to use the .xcframework format.

Built and tested With:

  • Google Mobile Ads SDK version 8.1.0.
  • MyTarget SDK version 5.10.0.

Version 5.9.11.0

  • Verified compatibility with myTarget SDK version 5.9.10.

Built and tested With:

  • Google Mobile Ads SDK version 7.69.0.
  • MyTarget SDK version 5.9.11.

Version 5.9.10.0

  • Verified compatibility with myTarget SDK version 5.9.10.

Built and tested With:

  • Google Mobile Ads SDK version 7.69.0.
  • MyTarget SDK version 5.9.10.

Version 5.9.9.1

  • Fixed an issue where banner ads sometimes load with a larger size than requested.

Built and tested With:

  • Google Mobile Ads SDK version 7.69.0.
  • MyTarget SDK version 5.9.9.

Version 5.9.9.0

  • Verified compatibility with myTarget SDK version 5.9.9.

Built and tested With:

  • Google Mobile Ads SDK version 7.69.0.
  • MyTarget SDK version 5.9.9.

Version 5.9.8.0

  • Verified compatibility with myTarget SDK version 5.9.8.

Built and tested With:

  • Google Mobile Ads SDK version 7.69.0.
  • MyTarget SDK version 5.9.8.

Version 5.9.7.0

  • Verified compatibility with myTarget SDK version 5.9.7.
  • Now requires Google Mobile Ads SDK version 7.69.0 or higher.

Built and tested With:

  • Google Mobile Ads SDK version 7.69.0.
  • MyTarget SDK version 5.9.7.

Version 5.9.6.0

  • Verified compatibility with myTarget SDK version 5.9.6.
  • Added standardized adapter error codes and messages.

Built and tested With:

  • Google Mobile Ads SDK version 7.68.0.
  • MyTarget SDK version 5.9.6.

Version 5.9.5.0

  • Verified compatibility with myTarget SDK version 5.9.5.

Built and tested With:

  • Google Mobile Ads SDK version 7.68.0.
  • MyTarget SDK version 5.9.5.

Version 5.9.4.0

  • Verified compatibility with myTarget SDK version 5.9.4.

Built and tested With:

  • Google Mobile Ads SDK version 7.68.0.
  • MyTarget SDK version 5.9.4.

Version 5.9.3.0

  • Verified compatibility with myTarget SDK version 5.9.3.
  • Now requires Google Mobile Ads SDK version 7.68.0 or higher.

Built and tested With:

  • Google Mobile Ads SDK version 7.68.0.
  • MyTarget SDK version 5.9.3.

Version 5.9.2.0

  • Added support for myTarget's adaptive banner ad size.
  • Verified compatibility with myTarget SDK version 5.9.2.
  • Now requires Google Mobile Ads SDK version 7.67.0 or higher.

Built and tested With:

  • Google Mobile Ads SDK version 7.67.0.
  • MyTarget SDK version 5.9.2.

Version 5.7.5.0

  • Verified compatibility with myTarget SDK version 5.7.5.

Built and tested With:

  • Google Mobile Ads SDK version 7.64.0.
  • MyTarget SDK version 5.7.5.

Version 5.7.4.0

  • Verified compatibility with myTarget SDK version 5.7.4.
  • Now requires Google Mobile Ads SDK version 7.64.0 or higher.

Built and tested With:

  • Google Mobile Ads SDK version 7.64.0.
  • MyTarget SDK version 5.7.4.

Version 5.7.3.0

  • Verified compatibility with myTarget SDK version 5.7.3.
  • Now requires Google Mobile Ads SDK version 7.63.0 or higher.

Built and tested With:

  • Google Mobile Ads SDK version 7.63.0.
  • MyTarget SDK version 5.7.3.

Version 5.7.2.0

  • Verified compatibility with myTarget SDK version 5.7.2.

Built and tested With:

  • Google Mobile Ads SDK version 7.62.0.
  • MyTarget SDK version 5.7.2.

Version 5.7.1.0

  • Verified compatibility with myTarget SDK version 5.7.1.

Built and tested With:

  • Google Mobile Ads SDK version 7.61.0.
  • MyTarget SDK version 5.7.1.

Version 5.7.0.0

  • Verified compatibility with myTarget SDK version 5.7.0.

Built and tested With:

  • Google Mobile Ads SDK version 7.61.0.
  • MyTarget SDK version 5.7.0.

Version 5.6.3.0

  • Verified compatibility with myTarget SDK version 5.6.3.
  • Now requires Google Mobile Ads SDK version 7.61.0 or higher.

Built and tested With:

  • Google Mobile Ads SDK version 7.61.0.
  • MyTarget SDK version 5.6.3.

Version 5.6.2.0

  • Verified compatibility with myTarget SDK version 5.6.2.

Built and tested With:

  • Google Mobile Ads SDK version 7.60.0.
  • MyTarget SDK version 5.6.2.

Version 5.6.1.0

  • Verified compatibility with myTarget SDK version 5.6.1.

Built and tested With:

  • Google Mobile Ads SDK version 7.60.0.
  • MyTarget SDK version 5.6.1.

Version 5.6.0.0

  • Verified compatibility with myTarget SDK version 5.6.0.
  • Now requires Google Mobile Ads SDK version 7.60.0 or higher.

Built and tested With:

  • Google Mobile Ads SDK version 7.60.0.
  • MyTarget SDK version 5.6.0.

Version 5.5.2.0

  • Verified compatibility with myTarget SDK version 5.5.2.
  • Now requires Google Mobile Ads SDK version 7.59.0 or higher.

Built and tested With:

  • Google Mobile Ads SDK version 7.59.0.
  • MyTarget SDK version 5.5.2.

Version 5.5.1.0

  • Verified compatibility with myTarget SDK version 5.5.1.
  • Now requires Google Mobile Ads SDK version 7.58.0 or higher.

Built and tested With:

  • Google Mobile Ads SDK version 7.58.0.
  • MyTarget SDK version 5.5.1.

Version 5.4.9.0

  • Verified compatibility with myTarget SDK version 5.4.9.
  • Removed support for the i386 architecture.

Built and tested With:

  • Google Mobile Ads SDK version 7.57.0.
  • MyTarget SDK version 5.4.9.

Version 5.4.7.0

  • Verified compatibility with myTarget SDK version 5.4.7.
  • Now requires minimum iOS version 9.0.

Built and tested With:

  • Google Mobile Ads SDK version 7.55.1.
  • MyTarget SDK version 5.4.7.

Version 5.4.5.0

  • Verified compatibility with myTarget SDK version 5.4.5.

Built and tested With:

  • Google Mobile Ads SDK version 7.53.1.
  • MyTarget SDK version 5.4.5.

Version 5.4.2.0

  • Verified compatibility with myTarget SDK version 5.4.2.
  • Adapter now returns a non-zero mediaContent aspect ratio.

Built and tested With:

  • Google Mobile Ads SDK version 7.53.1.
  • MyTarget SDK version 5.4.2.

Version 5.3.3.0

  • Verified compatibility with myTarget SDK version 5.3.3.
  • Removed support for Native Content and App Install ad requests. Apps must use the Unified Native Ads API to request native ads.
  • Now requires Google Mobile Ads SDK version 7.46.0 or higher.

Version 5.0.4.0

  • Verified compatibility with myTarget SDK version 5.0.4.
  • Updated the adapter to use the new rewarded API.
  • Now requires Google Mobile Ads SDK version 7.41.0 or higher.

Version 5.0.1.0

  • Verified compatibility with myTarget SDK version 5.0.1.

Version 4.8.9.0

  • Verified compatibility with myTarget SDK version 4.8.9.

Version 4.8.5.0

  • Verified compatibility with myTarget SDK version 4.8.5.

Version 4.8.0.0

  • Verified compatibility with myTarget SDK version 4.8.0.

Version 4.7.11.0

  • Verified compatibility with myTarget SDK version 4.7.11.

Version 4.7.10.0

  • Verified compatibility with myTarget SDK version 4.7.10.
  • Added adapterDidCompletePlayingRewardBasedVideoAd: callback to the adapter.

Version 4.7.9.1

  • Added support for Unified native ad.

Version 4.7.9.0

  • Verified compatibility with myTarget SDK version 4.7.9.
  • Added support for unified native ad.

Version 4.7.8.0

  • Verified compatibility with myTarget SDK version 4.7.8.

Version 4.7.7.0

  • Verified compatibility with myTarget SDK version 4.7.7.

Version 4.7.6.0

  • Verified compatibility with myTarget SDK version 4.7.6.

Version 4.7.5.0

  • Verified compatibility with myTarget SDK version 4.7.5.

Version 4.7.4.0

  • Verified compatibility with myTarget SDK version 4.7.4.

Version 4.7.3.0

  • Verified compatibility with myTarget SDK version 4.7.3.
  • Added support for native video ads.

Version 4.6.25.0

  • Verified compatibility with myTarget SDK version 4.6.25.

Version 4.6.24.0

  • First release!
  • Added support for banner, interstitial, rewarded, and native ads.