ironSource를 미디에이션과 통합

This guide shows you how to use the Google Mobile Ads SDK to load and display ads from ironSource Ads using mediation, covering waterfall integrations. It covers how to add ironSource Ads to an ad unit's mediation configuration, how to set up ad source optimization, and how to integrate the ironSource Ads SDK and adapter into your Android app.

Supported integrations and ad formats

The Ad Manager mediation adapter for ironSource Ads has the following capabilities:

Integration
Bidding
Waterfall
Formats
Banner
Interstitial
Rewarded
Rewarded Interstitial
Native

Requirements

  • Android API level 21 or higher

Step 1: Set up configurations in ironSource Ads UI

ironSource Ads 계정에 가입하고 로그인합니다.

ironSource Ads 대시보드에 애플리케이션을 추가하려면 New App 버튼을 클릭합니다.

앱 세부정보 입력

라이브 앱을 선택하고 앱의 Google Play URL을 입력한 다음 앱 정보 가져오기를 클릭합니다.

앱을 사용할 수 없는 경우 App Not Live in the Application Store를 선택하고 앱의 임시 이름을 입력합니다. 플랫폼을 선택합니다.

양식의 나머지 부분을 작성하고 앱 추가를 클릭합니다.

앱을 추가한 후 표시되는 새 앱 키를 기록해 둡니다.Ad Manager 광고 단위 ID 앱에서 지원하는 광고 형식을 선택합니다. 그런 다음 계속을 클릭합니다.

인스턴스 만들기

이제 추가한 앱의 네트워크 인스턴스를 구성합니다.

광고 > 설정 > 인스턴스로 이동합니다. 앱을 선택하고 인스턴스 만들기를 클릭합니다.

필요한 세부정보를 입력하고 저장 후 닫기를 클릭합니다.

인스턴스가 생성되면 인스턴스 ID 필드에 인스턴스 ID가 나열됩니다.

Reporting API 키 찾기

Ad Manager 광고 단위 ID를 설정하려면 앱 키인스턴스 ID 외에 ironSource 광고 보안 비밀 키갱신 토큰도 필요합니다.

ironSource 광고 게시자 대시보드에서 내 계정으로 이동한 후 API 탭을 클릭합니다. 보안 키갱신 토큰을 기록해 둡니다.

테스트 모드 사용 설정

ironSource 광고 테스트 광고를 사용 설정하는 방법은 ironSource 광고의 통합 테스트 가이드에 나온 안내를 따르세요.

Step 2: Set up ironSource Ads demand in Ad Manager UI

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

Ad Manager 계정에 로그인합니다.

게재 > 수익 그룹으로 이동하여 새 수익 그룹 버튼을 클릭합니다.

수익 그룹의 고유한 이름을 입력하고 상태활성으로 설정한 후 광고 형식을 선택하고 인벤토리 유형모바일 앱으로 설정합니다. 타겟팅 > 인벤토리 섹션에서 미디에이션을 추가할 인벤토리모바일 애플리케이션 아래의 광고 단위를 선택합니다.

그런 다음 수익 파트너 추가 버튼을 클릭합니다.

IronSource 에 대한 수익 파트너가 이미 있는 경우 이를 선택할 수 있습니다. 그렇지 않은 경우 새 수익 파트너 만들기를 선택합니다.

IronSource 광고 네트워크로 선택하고 고유한 이름을 입력한 다음 미디에이션을 사용 설정합니다.

자동 데이터 수집을 사용 설정하고 이전 섹션에서 확인한Secret Key and Refresh Token 을 입력합니다.

수익 파트너가 선택되면 모바일 SDK 미디에이션통합 유형으로, Android플랫폼으로, 활성상태로 선택합니다. 이전 섹션에서 가져온App Key and Instance ID 를 입력합니다. 그런 다음 기본 CPM 값을 입력합니다.

완료되면 페이지 하단의 저장을 클릭합니다.

Add ironSource Mobile to GDPR and US state regulations ad partners list

GDPR 설정미국 주 규정 설정 ironSource Mobile 를 Ad Manager UI의 GDPR 및 미국 주 규정 광고 파트너 목록에 추가합니다.

Step 3: Import the ironSource Ads SDK and adapter

In your project-level settings.gradle.kts file, add the following repositories:

dependencyResolutionManagement {
  repositories {
    google()
    mavenCentral()
    maven {
      url = uri("https://android-sdk.is.com/")
    }
  }
}

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

dependencies {
    implementation("com.google.android.gms:play-services-ads:23.3.0")
    implementation("com.google.ads.mediation:ironsource:8.2.1.0")
}

Manual Integration

  1. Download the latest version of the ironSource Ads Android SDK and add it to your project.

  2. Navigate to the ironSource Ads adapter artifacts on Google's Maven Repository. Select the latest version, download the IronSource adapter's .aar file, and add it to your project.

Step 4: Implement privacy settings on ironSource Ads 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 6.7.9, ironSource Ads added a consent API. The following sample code shows how to pass this consent information to the ironSource Ads 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.ironsource.mediationsdk.IronSource;
// ...

IronSource.setConsent(true);

Kotlin

import com.ironsource.mediationsdk.IronSource
// ...

IronSource.setConsent(true)

See ironSource Ads's documentation on Regulation Advanced Settings for more details 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 6.14.0, ironSource Ads added an API to support CCPA regulations. The following sample code shows how to pass this consent information to the ironSource Ads SDK. These options must be set before you initialize the Google Mobile Ads SDK to ensure they get forwarded properly to the ironSource Ads SDK.

Java

import com.ironsource.mediationsdk.IronSource;
// ...

IronSource.setMetaData("do_not_sell", "true");

Kotlin

import com.ironsource.mediationsdk.IronSource
// ...

IronSource.setMetaData("do_not_sell", "true")

See ironSource Ads's documentation on Regulation Advanced Settings for more details and the values that can be provided in the method.

Step 5: Add required code

Application lifecycle

Override the onPause() and onResume() methods in each of your activities to call the corresponding ironSource Ads methods as follows:

Java

@Override
public void onResume() {
    super.onResume();
    IronSource.onResume(this);
}

@Override
public void onPause() {
    super.onPause();
    IronSource.onPause(this);
}

Kotlin

public override fun onResume() {
    super.onResume()
    IronSource.onResume(this)
}

public override fun onPause() {
    super.onPause()
    IronSource.onPause(this)
}

Proguard Rules

If you shrink, obfuscate, and optimize your app , ironSource Ads requires additional ProGuard rules to your project. Consult ironSource Ads's Android SDK Integration guide for more information.

Step 6: Test your implementation

테스트 광고 사용 설정

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

테스트 광고 확인

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

Error codes

If the adapter fails to receive an ad from ironSource Ads, you can check the underlying error from the ad response using ResponseInfo.getAdapterResponses() under the following classes:

com.google.ads.mediation.ironsource.IronSourceAdapter
com.google.ads.mediation.ironsource.IronSourceRewardedAdapter

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

Error code Reason
101 ironSource Ads server parameters configured in the Ad Manager UI are missing/invalid.
102 ironSource Ads requires an Activity context to initialize their SDK.
103 ironSource Ads can only load 1 ad per ironSource Ads instance ID.
105 The requested banner ad size is not supported by ironSource Ads.
106 ironSource Ads SDK is not initialized.
501-1056 ironSource Ads SDK Errors. See documentation for more details.

IronSource Android Mediation Adapter Changelog

Version 8.2.1.0

  • Verified compatibility with ironSource SDK version 8.2.1.

Built and tested with:

  • Google Mobile Ads SDK version 23.2.0.
  • IronSource SDK version 8.2.1.

Version 8.2.0.0

  • Verified compatibility with ironSource SDK version 8.2.0.

Built and tested with:

  • Google Mobile Ads SDK version 23.2.0.
  • IronSource SDK version 8.2.0.

Version 8.1.0.0

  • Updated the minimum required Google Mobile Ads SDK version to 23.1.0.
  • Verified compatibility with ironSource SDK version 8.1.0.

Built and tested with:

  • Google Mobile Ads SDK version 23.1.0.
  • IronSource SDK version 8.1.0.

Version 8.0.0.1

  • Added watermark support for bidding ads.

Built and tested with:

  • Google Mobile Ads SDK version 23.0.0.
  • IronSource SDK version 8.0.0.

Version 8.0.0.0

  • Added bidding support for interstitial and rewarded ad formats.
  • Verified compatibility with ironSource SDK version 8.0.0.

Built and tested with:

  • Google Mobile Ads SDK version 23.0.0.
  • IronSource SDK version 8.0.0.

Version 7.9.0.0

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

Built and tested with:

  • Google Mobile Ads SDK version 23.0.0.
  • IronSource SDK version 7.9.0.

Version 7.8.1.1

  • Verified compatibility with ironSource SDK version 7.8.1.

Built and tested with:

  • Google Mobile Ads SDK version 22.6.0.
  • IronSource SDK version 7.8.1.

Version 7.7.0.1

  • Updated the ad objects to hold weak references to themselves. This avoids load error in the case where publisher deletes reference to an ad and later loads an ad for the same ad unit again.

Built and tested with:

  • Google Mobile Ads SDK version 22.6.0.
  • IronSource SDK version 7.7.0.

Version 7.7.0.0

  • Verified compatibility with ironSource SDK version 7.7.0.

Built and tested with:

  • Google Mobile Ads SDK version 22.6.0.
  • IronSource SDK version 7.7.0.

Version 7.6.1.0

  • Verified compatibility with ironSource SDK version 7.6.1.

Built and tested with:

  • Google Mobile Ads SDK version 22.6.0.
  • IronSource SDK version 7.6.1.

Version 7.6.0.0

  • Verified compatibility with ironSource SDK version 7.6.0.
  • Updated the minimum required Google Mobile Ads SDK version to 22.6.0.

Built and tested with:

  • Google Mobile Ads SDK version 22.6.0.
  • IronSource SDK version 7.6.0.

Version 7.5.2.0

  • Verified compatibility with ironSource SDK version 7.5.2.
  • Reverted the adapter to depend on Google Mobile Ads SDK version 22.3.0.

Built and tested with:

  • Google Mobile Ads SDK version 22.3.0.
  • IronSource SDK version 7.5.2.

Version 7.5.1.0

  • Updated the minimum required Google Mobile Ads SDK version to 22.4.0.

Built and tested with:

  • Google Mobile Ads SDK version 22.4.0.
  • IronSource SDK version 7.5.1.

Version 7.5.0.0

  • Verified compatibility with ironSource SDK version 7.5.1.
  • Added waterfall support for banner (includes MREC) ad format.
  • Updated the adapter to use the new mediation APIs.
  • Updated the minimum required Google Mobile Ads SDK version to 22.3.0.

Built and tested with:

  • Google Mobile Ads SDK version 22.3.0.
  • IronSource SDK version 7.5.1.

Version 7.4.0.0

  • Verified compatibility with ironSource SDK version 7.4.0.
  • Updated the minimum required Google Mobile Ads SDK version to 22.2.0.

Built and tested with:

  • Google Mobile Ads SDK version 22.2.0.
  • IronSource SDK version 7.4.0.

Version 7.3.1.1.0

  • Verified compatibility with ironSource SDK version 7.3.1.1.

Built and tested with:

  • Google Mobile Ads SDK version 22.1.0.
  • IronSource SDK version 7.3.1.1.

Version 7.3.1.0

  • Verified compatibility with ironSource SDK version 7.3.1.

Built and tested with:

  • Google Mobile Ads SDK version 22.0.0.
  • IronSource SDK version 7.3.1.

Version 7.3.0.1.0

  • Verified compatibility with ironSource SDK version 7.3.0.1.

Built and tested with:

  • Google Mobile Ads SDK version 22.0.0.
  • IronSource SDK version 7.3.0.1.

Version 7.3.0.0

  • Verified compatibility with ironSource SDK version 7.3.0.
  • 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.
  • IronSource SDK version 7.3.0.

Version 7.2.7.0

  • Verified compatibility with ironSource SDK version 7.2.7.
  • 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.
  • IronSource SDK version 7.2.7.

Version 7.2.6.0

  • Verified compatibility with ironSource SDK version 7.2.6.

Built and tested with:

  • Google Mobile Ads SDK version 21.3.0.
  • IronSource SDK version 7.2.6.

Version 7.2.5.0

  • Verified compatibility with ironSource SDK version 7.2.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.
  • IronSource SDK version 7.2.5.

Version 7.2.3.1.0

  • Verified compatibility with ironSource SDK version 7.2.3.1.

Built and tested with:

  • Google Mobile Ads SDK version 21.0.0.
  • IronSource SDK version 7.2.3.1.

Version 7.2.3.0

  • Verified compatibility with ironSource SDK version 7.2.3.

Built and tested with:

  • Google Mobile Ads SDK version 21.0.0.
  • IronSource SDK version 7.2.3.

Version 7.2.2.1.0

  • Verified compatibility with ironSource SDK version 7.2.2.1.

Built and tested with:

  • Google Mobile Ads SDK version 21.0.0.
  • IronSource SDK version 7.2.2.1.

Version 7.2.2.0

  • Verified compatibility with ironSource SDK version 7.2.2.
  • Updated compileSdkVersion and targetSdkVersion to API 31.
  • 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.
  • IronSource SDK version 7.2.2.

Version 7.2.1.1.0

  • Verified compatibility with ironSource SDK version 7.2.1.1.

Built and tested with:

  • Google Mobile Ads SDK version 20.6.0.
  • IronSource SDK version 7.2.1.1.

Version 7.2.1.0

  • Verified compatibility with ironSource SDK version 7.2.1.
  • 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.
  • IronSource SDK version 7.2.1.

Version 7.2.0.0

  • Verified compatibility with ironSource SDK version 7.2.0.

Built and tested with:

  • Google Mobile Ads SDK version 20.5.0.
  • IronSource SDK version 7.2.0.

Version 7.1.14.0

  • Verified compatibility with ironSource SDK version 7.1.14.

Built and tested with:

  • Google Mobile Ads SDK version 20.5.0.
  • IronSource SDK version 7.1.14.

Version 7.1.13.0

  • Verified compatibility with ironSource SDK version 7.1.13.
  • Updated the adapter to use new AdError API.

Built and tested with:

  • Google Mobile Ads SDK version 20.5.0.
  • IronSource SDK version 7.1.13.

Version 7.1.12.2.0

  • Verified compatibility with ironSource SDK version 7.1.12.2.
  • 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.
  • IronSource SDK version 7.1.12.2.

Version 7.1.12.1.0

  • Verified compatibility with ironSource SDK version 7.1.12.1.

Built and tested with:

  • Google Mobile Ads SDK version 20.4.0.
  • IronSource SDK version 7.1.12.1.

Version 7.1.12.0

  • Verified compatibility with ironSource SDK version 7.1.12.

Built and tested with:

  • Google Mobile Ads SDK version 20.4.0.
  • IronSource SDK version 7.1.12.

Version 7.1.11.1.0

  • Verified compatibility with ironSource SDK version 7.1.11.1.

Built and tested with:

  • Google Mobile Ads SDK version 20.4.0.
  • IronSource SDK version 7.1.11.1.

Version 7.1.11.0

  • Verified compatibility with ironSource SDK version 7.1.11.
  • 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.
  • IronSource SDK version 7.1.11.

Version 7.1.10.0

  • Verified compatibility with ironSource SDK version 7.1.10.

Built and tested with:

  • Google Mobile Ads SDK version 20.3.0.
  • IronSource SDK version 7.1.10.

Version 7.1.9.0

  • Verified compatibility with ironSource SDK version 7.1.9.
  • 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.
  • IronSource SDK version 7.1.9.

Version 7.1.8.0

  • Verified compatibility with ironSource SDK version 7.1.8.

Built and tested with:

  • Google Mobile Ads SDK version 20.2.0.
  • IronSource SDK version 7.1.8.

Version 7.1.7.0

  • Verified compatibility with ironSource SDK version 7.1.7.
  • 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.
  • IronSource SDK version 7.1.7.

Version 7.1.6.1.0

  • Verified compatibility with ironSource SDK version 7.1.6.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.
  • IronSource SDK version 7.1.6.1.

Version 7.1.6.0

  • Verified compatibility with ironSource SDK version 7.1.6.

Built and tested with:

  • Google Mobile Ads SDK version 20.1.0.
  • IronSource SDK version 7.1.6.

Version 7.1.5.1.0

  • Verified compatibility with ironSource SDK version 7.1.5.1.

Built and tested with:

  • Google Mobile Ads SDK version 20.0.0.
  • IronSource SDK version 7.1.5.1.

Version 7.1.5.0

  • Verified compatibility with ironSource SDK version 7.1.5.
  • 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.
  • IronSource SDK version 7.1.5.

Version 7.1.4.0

  • Verified compatibility with ironSource SDK version 7.1.4.

Built and tested with:

  • Google Mobile Ads SDK version 19.8.0.
  • IronSource SDK version 7.1.4.

Version 7.1.3.0

  • Verified compatibility with ironSource SDK version 7.1.3.
  • Updated the minimum required Google Mobile Ads SDK version to 19.8.0.

Built and tested with:

  • Google Mobile Ads SDK version 19.8.0.
  • IronSource SDK version 7.1.3.

Version 7.1.2.0

  • Added support for rewarded interstitial ads.
  • Verified compatibility with ironSource SDK version 7.1.2.

Built and tested with:

  • Google Mobile Ads SDK version 19.7.0.
  • IronSource SDK version 7.1.2.

Version 7.1.0.2.0

  • Verified compatibility with ironSource SDK version 7.1.0.2.

Built and tested with:

  • Google Mobile Ads SDK version 19.7.0.
  • IronSource SDK version 7.1.0.2.

Version 7.1.0.1.0

  • Verified compatibility with ironSource SDK version 7.1.0.1.
  • 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.
  • IronSource SDK version 7.1.0.1.

Version 7.0.4.1.0

  • Verified compatibility with ironSource SDK version 7.0.4.1.
  • 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.
  • IronSource SDK version 7.0.4.1.

Version 7.0.4.0

  • Verified compatibility with ironSource SDK version 7.0.4.

Built and tested with:

  • Google Mobile Ads SDK version 19.5.0.
  • IronSource SDK version 7.0.4.

Version 7.0.3.1.0

  • Verified compatibility with ironSource SDK version 7.0.3.1.
  • 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.
  • IronSource SDK version 7.0.3.1.

Version 7.0.2.0

  • Verified compatibility with ironSource SDK version 7.0.2.
  • 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.
  • IronSource SDK version 7.0.2.

Version 7.0.1.1.0

  • Verified compatibility with ironSource SDK version 7.0.1.1.

Built and tested with:

  • Google Mobile Ads SDK version 19.3.0.
  • IronSource SDK version 7.0.1.1.

Version 7.0.0.0

  • Verified compatibility with ironSource SDK version 7.0.0.

Built and tested with:

  • Google Mobile Ads SDK version 19.3.0.
  • IronSource SDK version 7.0.0.

Version 6.18.0.0

  • Verified compatibility with ironSource SDK version 6.18.0.
  • Updated the minimum required Google Mobile Ads SDK version to 19.3.0.

Built and tested with:

  • Google Mobile Ads SDK version 19.3.0.
  • IronSource SDK version 6.18.0.

Version 6.17.0.1

  • Added descriptive error codes and reasons for adapter load/show failures.
  • 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.
  • IronSource SDK version 6.17.0.

Version 6.17.0.0

  • Verified compatibility with ironSource SDK version 6.17.0.

Built and tested with:

  • Google Mobile Ads SDK version 19.1.0.
  • IronSource SDK version 6.17.0.

Version 6.16.2.0

  • Verified compatibility with ironSource SDK version 6.16.2.

Built and tested with:

  • Google Mobile Ads SDK version 19.1.0.
  • IronSource SDK version 6.16.2.

Version 6.16.1.0

  • Verified compatibility with ironSource SDK version 6.16.1.
  • 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.
  • IronSource SDK version 6.16.1.

Version 6.16.0.0

  • Verified compatibility with ironSource SDK version 6.16.0.

Built and tested with:

  • Google Mobile Ads SDK version 19.0.1.
  • IronSource SDK version 6.16.0.

Version 6.15.0.1.0

  • Verified compatibility with ironSource SDK version 6.15.0.1.
  • 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.
  • IronSource SDK version 6.15.0.1.

Version 6.15.0.0

  • Verified compatibility with ironSource SDK version 6.15.0.
  • Updated the minimum required Google Mobile Ads SDK version to 19.0.0.

Built and tested with:

  • Google Mobile Ads SDK version 19.0.0.
  • IronSource SDK version 6.15.0.

Version 6.14.0.1.0

  • Verified compatibility with ironSource SDK version 6.14.0.1.

Built and tested with:

  • Google Mobile Ads SDK version 18.3.0.
  • IronSource SDK version 6.14.0.1.

Version 6.14.0.0

  • Verified compatibility with ironSource SDK version 6.14.0.

Built and tested with:

  • Google Mobile Ads SDK version 18.3.0.
  • IronSource SDK version 6.14.0.

Version 6.13.0.1.0

  • Verified compatibility with ironSource SDK version 6.13.0.1.

Built and tested with:

  • Google Mobile Ads SDK version 18.3.0.
  • IronSource SDK version 6.13.0.1.

Version 6.12.0.0

  • Verified compatibility with ironSource SDK version 6.12.0.

Built and tested with:

  • Google Mobile Ads SDK version 18.3.0.
  • IronSource SDK version 6.12.0.

Version 6.11.0.0

  • Verified compatibility with ironSource SDK version 6.11.0.
  • 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.
  • IronSource SDK version 6.11.0.

Version 6.10.0.0

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

Version 6.9.1.0

  • Verified compatibility with ironSource SDK version 6.9.1.

Version 6.9.0.1

  • Fixed ironSource adapter to remove it's lock on an instance ID.
  • Updated the minimum required Google Mobile Ads SDK version to 18.1.1.

Version 6.9.0.0

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

Version 6.8.4.1

  • Added support to request multiple interstitial ads.

Version 6.8.4.0

  • Verified compatibility with ironSource SDK version 6.8.4.

Version 6.8.1.2

  • Fixed an issue where loading rewarded ads always failed to load if an interstitial ad was loaded first.

Version 6.8.1.1

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

Version 6.8.1.0

  • Verified compatibility with ironSource SDK version 6.8.1.

Version 6.7.12.0

  • Verified compatibility with ironSource SDK version 6.7.12.

Version 6.7.11.0

  • Verified compatibility with ironSource SDK version 6.7.11.

Version 6.7.10.0

  • Verified compatibility with ironSource SDK version 6.7.10.

Version 6.7.9.1.1

  • Updated the adapter to invoke the onRewardedVideoComplete() ad event.

Version 6.7.9.1.0

  • Verified compatibility with ironSource SDK version 6.7.9.1.

Version 6.7.9.0

  • Verified compatibility with ironSource SDK version 6.7.9.

Version 6.7.8.0

  • Verified compatibility with ironSource SDK version 6.7.8.

Version 6.7.7.0

  • Initialize IronSource SDK once per ad unit.
  • Added option to pass activity to IronSource SDK in onPause and onResume methods.
  • Verified compatibility with ironSource SDK version 6.7.0.

Version 6.7.5.0

  • Initial release.