Zintegruj MyTarget z zapośredniczeniem

This guide shows you how to use the Google Mobile Ads SDK to load and display ads from myTarget using 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 Android app.

Supported integrations and ad formats

The mediation adapter for myTarget has the following capabilities:

Integration
Bidding
Waterfall
Formats
Banner
Interstitial
Rewarded
Native

Requirements

  • Android API level 21 or higher

Step 1: Set up configurations in myTarget UI

Najpierw zarejestruj się lub zaloguj na konto myTarget. Otwórz stronę Aplikacje, klikając APLIKACJE w nagłówku. Aby dodać aplikację, kliknij DODAJ APLIKACJĘ.

Następnie podaj adres URL Google Play dla Twojej aplikacji.

Gdy dodajesz aplikację, myTarget musisz utworzyć jednostkę reklamową, zanim zakończysz ten proces.

Wybierz BANNER z dostępnych formatów reklam i kliknij przycisk BANNER.

Pełnoekranowa

Spośród dostępnych formatów reklam wybierz REKLAMA PEŁNOEKRANOWA i kliknij przycisk DODAJ JEDNOSTKĘ REKLAMOWĄ.

Otrzymano

Wybierz FILM Z NAGRODĄ spośród dostępnych formatów reklamy i kliknij przycisk DODAJ JEDNOSTKĘ REKLAMOWĄ.

Natywna

Spośród dostępnych formatów reklam wybierz NATIVE, a potem kliknij DODAJ JEDNOSTKĘ REKLAMOWĄ.

Na stronie szczegółów jednostki reklamowej zanotuj identyfikator boksu, który znajdziesz w ustawieniach jednostki reklamowej jako slot_id. Ten identyfikator boksu zostanie użyty w następnej sekcji do skonfigurowania Ad Manager jednostki reklamowej.

Oprócz parametru slot_id potrzebujesz też tokena stałego dostępu myTarget, by skonfigurować identyfikator jednostki reklamowej AdMob. Otwórz kartę Profile (Profil) i wybierz Access Tokens (Tokeny dostępu). Kliknij Create Token (Utwórz token) lub Show Token (Pokaż token), aby wyświetlić Permanent Access Token (token stałego dostępu) myTarget.

Włącz tryb testowy

Wykonaj instrukcje podane w dokumentacji obiektu myTarget, aby dodać i skonfigurować urządzenie testowe w interfejsie użytkownika myTarget.

Step 2: Set up myTarget demand in Ad Manager UI

Konfigurowanie ustawień zapośredniczenia dla jednostki reklamowej

Zaloguj się na konto Ad Managera.

Kliknij Wyświetlanie > Grupy zysku i kliknij przycisk Nowa grupa zysku.

Wpisz niepowtarzalną nazwę grupy zysku, ustaw Stan na Aktywna, wybierz Format reklamy, a jako Typ zasobów reklamowych wybierz Aplikacja mobilna. W sekcji Kierowanie > Zasoby reklamowe wybierz jednostkę reklamową w sekcjach Zasoby reklamowe i Aplikacja mobilna, do której chcesz dodać zapośredniczenie.

Następnie kliknij przycisk Dodaj partnera zysku.

Jeśli masz już partnera zysku w przypadku usługimyTarget, możesz go wybrać. W przeciwnym razie kliknij Utwórz nowego partnera zysku.

Jako Sieć reklamowa wybierz myTarget, wpisz niepowtarzalną nazwę i włącz Zapośredniczenie.

Włącz Automatyczne zbieranie danych i wpiszPermanent Access Token uzyskane w poprzedniej sekcji.

Po wybraniu Partnera zysku wybierz Zapośredniczenie mobilne SDK jako typ integracji, Android jako platformę i Aktywne jako stan. WpiszSlot ID uzyskane w poprzedniej sekcji. Następnie wpisz domyślną wartość CPM.

Gdy skończysz, u dołu strony kliknij Zapisz.

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

Wykonaj czynności opisane w sekcji Ustawienia RODO i Ustawienia amerykańskich przepisów stanowych , aby dodać Mail.ru do listy partnerów reklamowych zgodnych z RODO i amerykańskimi przepisami stanowymi w Ad Manager UI.

Step 3: Import the myTarget SDK and adapter

In your app-level build.gradle.kts file, add the following implementation dependencies and configurations. Use the latest versions of the myTarget SDK and adapter:

dependencies {
    implementation("com.google.android.gms:play-services-ads:23.2.0")
    implementation("com.google.ads.mediation:mytarget:5.21.1.0")
}

Manual integration

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 5.1.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.

Java

import com.my.target.common.MyTargetPrivacy;
// ...

MyTargetPrivacy.setUserConsent(true);

Kotlin

import com.my.target.common.MyTargetPrivacy
// ...

MyTargetPrivacy.setUserConsent(true)

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.

Java

import com.my.target.common.MyTargetPrivacy;
// ...

MyTargetPrivacy.setUserAgeRestricted(true);

Kotlin

import com.my.target.common.MyTargetPrivacy
// ...

MyTargetPrivacy.setUserAgeRestricted(true)

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.9.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.

Java

import com.my.target.common.MyTargetPrivacy;
// ...

MyTargetPrivacy.setCcpaUserConsent(true);

Kotlin

import com.my.target.common.MyTargetPrivacy
// ...

MyTargetPrivacy.setCcpaUserConsent(true)

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

Step 5: Add required code

No additional code is required for myTarget integration.

Step 6: Test your implementation

Włącz reklamy testowe

Zarejestruj urządzenie testowe na potrzeby Ad Manager i włącz tryb testowy w myTarget interfejsie użytkownika.

Weryfikacja reklam testowych

Aby sprawdzić, czy otrzymujesz reklamy testowe z witrynymyTarget, włącz w inspektorze reklam testowanie pojedynczego źródła reklam, korzystając z myTarget (Waterfall) źródeł reklam.

Optional steps

Using native ads

Ad rendering

The myTarget adapter returns its native ads as NativeAd objects. It populates the following fields for a NativeAd.

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

The myTarget SDK always returns 0 for mediaView width and height, so the myTarget adapter always returns 0 for getAspectRatio(). The myTarget SDK will fix this issue in a future release.

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 ResponseInfo.getAdapterResponses() under the following classes:

com.google.ads.mediation.mytarget.MyTargetAdapter
com.google.ads.mediation.mytarget.MyTargetNativeAdapter
com.google.ads.mediation.mytarget.MyTargetRewardedAdapter

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

Error code Reason
100 myTarget SDK returned an error.
101 myTarget server parameters configured in the Ad Manager UI are missing/invalid.
102 The requested ad size does not match a myTarget supported banner size.
103 Ad request is not a Unified native ad request.
104 The loaded native ad from myTarget is different from the requested native ad.
105 The loaded native ad from myTarget is missing some required assets (e.g. image or icon).

myTarget Android Mediation Adapter Changelog

Version 5.21.1.0

  • Verified compatibility with myTarget SDK version 5.21.1.

Built and tested with:

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

Version 5.21.0.0

  • Verified compatibility with myTarget SDK version 5.21.0.

Built and tested with:

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

Version 5.20.1.0

  • Updated the minimum required Google Mobile Ads SDK version to 23.0.0.
  • Verified compatibility with myTarget SDK version 5.20.1.

Built and tested with:

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

Version 5.20.0.0

  • Verified compatibility with myTarget SDK version 5.20.0.

Built and tested with:

  • Google Mobile Ads SDK version 22.5.0.
  • MyTarget SDK version 5.20.0.

Version 5.19.0.0

  • Verified compatibility with myTarget SDK version 5.19.0.

Built and tested with:

  • Google Mobile Ads SDK version 22.3.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 22.2.0.
  • MyTarget SDK version 5.18.0.

Version 5.17.0.0

  • Verified compatibility with myTarget SDK version 5.17.0.

Built and tested with:

  • Google Mobile Ads SDK version 22.2.0.
  • MyTarget SDK version 5.17.0.

Version 5.16.5.0

  • Verified compatibility with myTarget SDK version 5.16.5.

Built and tested with:

  • Google Mobile Ads SDK version 22.0.0.
  • MyTarget SDK version 5.16.5.

Version 5.16.4.1

  • Updated adapter to use new VersionInfo class.
  • Updated the minimum required Google Mobile Ads SDK version to 22.0.0.

Built and tested with:

  • Google Mobile Ads SDK version 22.0.0.
  • MyTarget SDK version 5.16.4.

Version 5.16.4.0

  • Verified compatibility with myTarget SDK version 5.16.4.
  • Updated the minimum required Google Mobile Ads SDK version to 21.5.0.

Built and tested with:

  • Google Mobile Ads SDK version 21.5.0.
  • MyTarget SDK version 5.16.4.

Version 5.16.3.0

  • Verified compatibility with myTarget SDK version 5.16.3.
  • Updated the minimum required Google Mobile Ads SDK version to 21.4.0.

Built and tested with:

  • Google Mobile Ads SDK version 21.4.0.
  • MyTarget SDK version 5.16.3.

Version 5.16.2.0

  • Verified compatibility with myTarget SDK version 5.16.2.

Built and tested with:

  • Google Mobile Ads SDK version 21.3.0.
  • MyTarget SDK version 5.16.2.

Version 5.16.1.0

  • Verified compatibility with myTarget SDK version 5.16.1.

Built and tested with:

  • Google Mobile Ads SDK version 21.3.0.
  • MyTarget SDK version 5.16.1.

Version 5.16.0.0

  • Verified compatibility with myTarget SDK version 5.16.0.

Built and tested with:

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

Version 5.15.5.0

  • Verified compatibility with myTarget SDK version 5.15.5.
  • Updated the minimum required Google Mobile Ads SDK version to 21.3.0.

Built and tested with:

  • Google Mobile Ads SDK version 21.3.0.
  • MyTarget SDK version 5.15.5.

Version 5.15.4.0

  • Verified compatibility with myTarget SDK version 5.15.4.
  • Updated the minimum required Google Mobile Ads SDK version to 21.1.0.

Built and tested with:

  • Google Mobile Ads SDK version 21.1.0.
  • MyTarget SDK version 5.15.4.

Version 5.15.3.0

  • Verified compatibility with myTarget SDK version 5.15.3.

Built and tested with:

  • Google Mobile Ads SDK version 21.0.0.
  • MyTarget SDK version 5.15.3.

Version 5.15.2.1

  • Updated the minimum required Google Mobile Ads SDK version to 21.0.0.
  • Updated the minimum required Android API level to 19.

Built and tested with:

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

Version 5.15.2.0

  • Verified compatibility with myTarget SDK version 5.15.2.

Built and tested with:

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

Version 5.15.1.0

  • Verified compatibility with myTarget SDK version 5.15.1.
  • Updated compileSdkVersion and targetSdkVersion to API 31.
  • Updated the minimum required Google Mobile Ads SDK version to 20.6.0.

Built and tested with:

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

Version 5.15.0.0

  • Verified compatibility with myTarget SDK version 5.15.0.

Built and tested with:

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

Version 5.14.4.0

  • Verified compatibility with myTarget SDK version 5.14.4.
  • Added mediation extras handling for CustomParams.
  • Fixed an issue where the native ad MediaView was not properly registered as a clickable asset.
  • Updated the minimum required Google Mobile Ads SDK version to 20.5.0.

Built and tested with:

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

Version 5.14.3.0

  • Verified compatibility with myTarget SDK version 5.14.3.

Built and tested with:

  • Google Mobile Ads SDK version 20.4.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 20.4.0.
  • MyTarget SDK version 5.14.2.

Version 5.14.1.0

  • Verified compatibility with myTarget SDK version 5.14.1.
  • Updated the minimum required Google Mobile Ads SDK version to 20.4.0.

Built and tested with:

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

Version 5.13.4.0

  • Verified compatibility with myTarget SDK version 5.13.4.

Built and tested with:

  • Google Mobile Ads SDK version 20.3.0.
  • MyTarget SDK version 5.13.4.

Version 5.13.3.0

  • Verified compatibility with myTarget SDK version 5.13.3.
  • Updated the minimum required Google Mobile Ads SDK version to 20.3.0.

Built and tested with:

  • Google Mobile Ads SDK version 20.3.0.
  • MyTarget SDK version 5.13.3.

Version 5.13.2.0

  • Verified compatibility with myTarget SDK version 5.13.2.

Built and tested with:

  • Google Mobile Ads SDK version 20.2.0.
  • MyTarget SDK version 5.13.2.

Version 5.13.1.0

  • Verified compatibility with myTarget SDK version 5.13.1.
  • Updated the minimum required Google Mobile Ads SDK version to 20.2.0.

Built and tested with:

  • Google Mobile Ads SDK version 20.2.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 20.1.0.
  • MyTarget SDK version 5.13.0.

Version 5.12.3.0

  • Verified compatibility with myTarget SDK version 5.12.3.
  • Updated the minimum required Google Mobile Ads SDK version to 20.1.0.

Built and tested with:

  • Google Mobile Ads SDK version 20.1.0.
  • MyTarget SDK version 5.12.3.

Version 5.12.2.0

  • Verified compatibility with myTarget SDK version 5.12.2.
  • Updated the minimum required Google Mobile Ads SDK version to 20.0.0.

Built and tested with:

  • Google Mobile Ads SDK version 20.0.0.
  • MyTarget SDK version 5.12.2.

Version 5.11.12.0

  • Verified compatibility with myTarget SDK version 5.11.12.

Built and tested with:

  • Google Mobile Ads SDK version 19.7.0.
  • MyTarget SDK version 5.11.12.

Version 5.11.10.0

  • Verified compatibility with myTarget SDK version 5.11.10.
  • Added descriptive error codes and reasons for adapter load/show failures.
  • Updated the minimum required Google Mobile Ads SDK version to 19.7.0.

Built and tested with:

  • Google Mobile Ads SDK version 19.7.0.
  • MyTarget SDK version 5.11.10.

Version 5.11.7.0

  • Verified compatibility with myTarget SDK version 5.11.7.

Built and tested with:

  • Google Mobile Ads SDK version 19.6.0.
  • MyTarget SDK version 5.11.7.

Version 5.11.6.0

  • Verified compatibility with myTarget SDK version 5.11.6.
  • Removed support for the deprecated NativeContentAd and NativeAppInstallAd formats. Apps should request for unified native ads.
  • Fixed an issue where banner ads sometimes load with a larger size than requested.
  • Updated the minimum required Google Mobile Ads SDK version to 19.6.0.

Built and tested with:

  • Google Mobile Ads SDK version 19.6.0.
  • MyTarget SDK version 5.11.6.

Version 5.11.5.0

  • Verified compatibility with myTarget SDK version 5.11.5.

Built and tested with:

  • Google Mobile Ads SDK version 19.5.0.
  • MyTarget SDK version 5.11.5.

Version 5.11.4.0

  • Verified compatibility with myTarget SDK version 5.11.4.

Built and tested with:

  • Google Mobile Ads SDK version 19.5.0.
  • MyTarget SDK version 5.11.4.

Version 5.11.3.0

  • Added support for myTarget's adaptive banner ad size.
  • Verified compatibility with myTarget SDK version 5.11.3.
  • Updated the minimum required Google Mobile Ads SDK version to 19.5.0.

Built and tested with:

  • Google Mobile Ads SDK version 19.5.0.
  • MyTarget SDK version 5.11.3.

Version 5.10.0.0

  • Verified compatibility with myTarget SDK version 5.10.0.
  • Updated the minimum required Google Mobile Ads SDK version to 19.4.0.

Built and tested with:

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

Version 5.9.1.0

  • Verified compatibility with myTarget SDK version 5.9.1.

Built and tested with:

  • Google Mobile Ads SDK version 19.2.0.
  • MyTarget SDK version 5.9.1.

Version 5.8.4.0

  • Verified compatibility with myTarget SDK version 5.8.4.

Built and tested with:

  • Google Mobile Ads SDK version 19.2.0.
  • MyTarget SDK version 5.8.4.

Version 5.8.3.0

  • Verified compatibility with myTarget SDK version 5.8.3.
  • Updated the minimum required Google Mobile Ads SDK version to 19.2.0.

Built and tested with:

  • Google Mobile Ads SDK version 19.2.0.
  • MyTarget SDK version 5.8.3.

Version 5.8.2.0

  • Verified compatibility with myTarget SDK version 5.8.2.
  • Updated the adapter to support inline adaptive banner requests.

Built and tested with:

  • Google Mobile Ads SDK version 19.1.0.
  • MyTarget SDK version 5.8.2.

Version 5.8.1.0

  • Verified compatibility with myTarget SDK version 5.8.1.

Built and tested with:

  • Google Mobile Ads SDK version 19.1.0.
  • MyTarget SDK version 5.8.1.

Version 5.8.0.0

  • Verified compatibility with myTarget SDK version 5.8.0.

Built and tested with:

  • Google Mobile Ads SDK version 19.1.0.
  • MyTarget SDK version 5.8.0.

Version 5.7.1.0

  • Verified compatibility with myTarget SDK version 5.7.1.

Built and tested with:

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

Version 5.7.0.0

  • Verified compatibility with myTarget SDK version 5.7.0.
  • Updated the minimum required Google Mobile Ads SDK version to 19.1.0.

Built and tested with:

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

Version 5.6.3.0

  • Verified compatibility with myTarget SDK version 5.6.3.

Built and tested with:

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

Version 5.6.2.0

  • Verified compatibility with myTarget SDK version 5.6.2.
  • Updated the minimum required Google Mobile Ads SDK version to 19.0.1.

Built and tested with:

  • Google Mobile Ads SDK version 19.0.1.
  • 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 19.0.0.
  • MyTarget SDK version 5.6.1.

Version 5.6.0.0

  • Verified compatibility with myTarget SDK version 5.6.0.
  • Updated the minimum required Google Mobile Ads SDK version to 19.0.0.
  • Updated the minimum required Android API level to 16.

Built and tested with:

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

Version 5.5.5.0

  • Verified compatibility with myTarget SDK version 5.5.5.
  • Updated the minimum required Google Mobile Ads SDK version to 18.3.0.

Built and tested with:

  • Google Mobile Ads SDK version 18.3.0.
  • MyTarget SDK version 5.5.5.

Version 5.4.6.0

  • Verified compatibility with myTarget SDK version 5.4.6.
  • Updated the minimum required Google Mobile Ads SDK version to 18.2.0.

Version 5.4.5.0

  • Verified compatibility with myTarget SDK version 5.4.5.
  • Updated the minimum required Google Mobile Ads SDK version to 18.1.0.

Version 5.4.0.0

  • Verified compatibility with myTarget SDK version 5.4.0.

Version 5.3.9.1

  • Added support for flexible banner ad sizes.

Version 5.3.9.0

  • Verified compatibility with myTarget SDK version 5.3.9.
  • Updated adapter to support new open-beta Rewarded API.
  • Updated the minimum required Google Mobile Ads SDK version to 17.2.0.

Version 5.3.6.0

  • Verified compatibility with myTarget SDK version 5.3.6.

Version 5.2.5.0

  • Verified compatibility with myTarget SDK version 5.2.5.
  • Fixed a bug where the adapter fails to request a Banner ad when using a custom size.

Version 5.2.2.0

  • Verified compatibility with myTarget SDK version 5.2.2.

Version 5.2.1.0

  • Verified compatibility with myTarget SDK version 5.2.1.

Version 5.2.0.0

  • Verified compatibility with myTarget SDK version 5.2.0.

Version 5.1.4.0

  • Verified compatibility with myTarget SDK version 5.1.4.

Version 5.1.3.0

  • Verified compatibility with myTarget SDK version 5.1.3.

Version 5.1.2.0

  • Verified compatibility with myTarget SDK version 5.1.2.

Version 5.1.1.0

  • Verified compatibility with myTarget SDK version 5.1.1.

Version 5.1.0.1

  • Updated adapter to use the Unified Native Ads adapter API.

Version 5.1.0.0

  • Verified compatibility with myTarget SDK version 5.1.0.

Version 5.0.4.0

  • Verified compatibility with myTarget SDK version 5.0.4.

Version 5.0.2.1

  • Updated the adapter to make it compatible with Google Mobile Ads SDK version 15.0.0.

Version 5.0.2.0

  • Verified compatibility with myTarget SDK version 5.0.2.

Version 5.0.0.0

  • Verified compatibility with myTarget SDK version 5.0.0.
  • Updated the adapter to make it compatible with myTarget SDK 5.0.0 and Android Studio 3.1.

Version 4.7.2.0

  • Verified compatibility with myTarget SDK version 4.7.2.

Version 4.7.1.0

  • Verified compatibility with myTarget SDK version 4.7.1.
  • Added support for video and carousel ads inside MediaView.

Version 4.6.28.0

  • Updated the adapter project for Android Studio 3.0.
  • Verified compatibility with myTarget SDK version 4.6.28.

Version 4.6.27.0

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