Skip to main content

Mediation Setup

Here you will find the guide to implement and use the Attrackt iOS Framework SDK
Attrackt allows you to mix and mediate multiple suppliers along with Attrackt.

Supported Advertisers

  • AppLovin

Installation

You can add the desired advertiser adapter to the project using Cocoapods or Manually.
In order to make the mediation work make sure to set up the networks with the Api key on the Dashboard
or click Here to get there.

After implementing the adapter properly and setting everything up on Attrackt dashboard,
you should be able to start and see the mediation waterfall in action.

Requirements

All of our adapters are availble through Cocoapods.
To make it work just implement the required Pod line from the list below into your applciation main Podfile.

Make sure your pod file includes Attrackt main Pod.

pod 'Attrackt'


Attrackt requires minimum build target of 12.0 so make sure you have

platform :ios, '12.0'


Adapters


AppLovin

pod 'AttracktAppLovinAdapter'


Example Pod file

platform :ios, '12.0'

target 'AttracktIntegrationTest' do

  use_frameworks!

  pod 'Attrackt'
  pod 'AttracktAppLovinAdapter'

end

Don't forget to run Pod Install

pod install --update-repo
And you should be all set!