Skip to content

LevelPlay (ironSource) Mediation Integration

Supported Ad Formats

Ad FormatSupported
Banner (320×50)
MREC (300×250)
Interstitial
Rewarded

Integration Mode

Opera Ads is integrated into LevelPlay as a custom network and serves through the waterfall: Opera Ads competes with the manual eCPM you configure for the Opera ad source in the LevelPlay console. Opera Ads is not currently available as an official bidding network on LevelPlay.

Looking for bidding?

To run your own auction with Opera Ads, see Client Bidding or Server Bidding. Those are a separate integration and are independent of mediation.

Configure Custom Network in LevelPlay Console

Add Custom SDK Network

  1. Sign in to the Unity LevelPlay Dashboard
  2. Navigate to LevelPlaySetupSDK Networks
  3. Click Manage NetworksCustom Adapter
  4. Fill in the following information:
    • Network Key: 15c113b49 (Network name OperaAds)
    • iOS Adapter Class Name: ISOperaAdsCustomAdapter

Configure Ad Units

On the Ad Units page, add Opera Ads as an ad source:

  1. Select an ad unit → SetupInstancesAdd Instance
  2. Select Opera Ads custom network
  3. Configure the instance parameters:

Parameter Mapping:

LevelPlay FieldKeyDescription
App IDappidYour Opera Ads Application ID (format: pub{}/ep{}/app{})
Placement IDplacementidYour Opera Ads Placement ID (format: s{})
Bundle IDoperaBundleIdYour iOS App Store ID (numeric, e.g. 1444253128, not the app's bundle identifier)

Add Dependencies

Add to your Podfile:

ruby
platform :ios, '13.0'

target 'YourApp' do
  use_frameworks!

  # ironSource LevelPlay SDK
  pod 'IronSourceSDK'

  # Opera Ads SDK
  pod 'OpAdxSdk', '~> 2.12.0'

  # Opera Ads LevelPlay Adapter
  pod 'IronSourceOperaSDKAdapter', '~> 2.12.0.0'
end

Then run:

bash
pod install

Additional Code Required

The LevelPlay SDK automatically initializes the Opera Ads SDK through the adapter. No additional initialization code is required for Opera Ads.

Initialize LevelPlay SDK

swift
import IronSource

class AppDelegate: UIResponder, UIApplicationDelegate {

    func application(_ application: UIApplication,
                     didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {

        let requestBuilder = LPMInitRequestBuilder(appKey: "YOUR_APP_KEY")
        let initRequest = requestBuilder.build()
        LevelPlay.initWith(initRequest) { config, error in
            if let error = error {
                print("LevelPlay initialization failed: \(error)")
            } else {
                print("LevelPlay SDK initialized")
            }
        }

        // Opera Ads SDK will be auto-initialized by the adapter

        return true
    }
}

Privacy Compliance

GDPR

Please refer to GDPR. The Opera Ads SDK reads the application's consent string automatically.

COPPA

Please refer to COPPA. You can set COPPA status via the SDK init config's .coppa() builder method.

CCPA (US Privacy)

Please refer to US Privacy. You can set the CCPA status via the SDK init config's .usPrivacy() builder method.