iOS SDK Integration

Integrating the SDK

The easiest way to integrate the SDK to your iOS project is to use CocoaPods.

Step 1: Simply open your project's Podfile and add a new source to the top:

source 'https://github.com/empowernet/specs.git'

Step 2: Add the following line to your app's target block:

pod 'EmpowerMobileAds', '~> 5.9.0'

Step 3: Run the following command from the command line to install the dependencies:

pod install --repo-update

If you're new to CocoaPods, please refer to their official documentation for more information on getting started with it.

Update your Info.plist

Declare that your app is an AdManager app by adding a key named GADApplicationIdentifier with the string value which will be provided by us to your app's Info.plist file.

You may also make this change manually by adding the following lines to Info.plist:

<key>GADApplicationIdentifier</key>
<string>ca-app-pub-xxxxxxxxxxxxxxxx~yyyyyyyyyy</string>

Build Settings

Please follow the following steps below as well, if your project is written in Objective-C:

  • Set Defines Module value to Yes.
  • Set Always Embed Swift Standard Libraries value to Yes.
  • Set Install Objective-C Compatibility Header value to Yes.

Importing the SDK

In order to be able to use the Empower Mobile Ads SDK, you must import it where necessary.

Projects using Swift

Please add the following line to the files where you refer to the classes provided by the Empower Mobile Ads SDK:

import EmpowerMobileAds

Projects using Objective-C

Since Empower Mobile Ads SDK is written in Swift, you need to create a Bridging-Header.h file.

You may do so by creating an empty Swift file and allowing the Xcode to create one for you, by simply accepting the prompt.

After the bridging header is created, you may use the line below to import the SDK in your .m and .h files.

@import EmpowerMobileAds;

Integrating Mediation Networks

You need to follow the Google's documentation on the following mediation bidding networks to integrate their SDKs. Before implementing mediation networks, please add following code snippet to the Application file or MainActivity:

let ads = GADMobileAds.sharedInstance()
ads.start { status in
// Optional: Log each adapter's initialization latency.
let adapterStatuses = status.adapterStatusesByClassName
for adapter in adapterStatuses {
let adapterStatus = adapter.value
NSLog("Adapter Name: %@, Description: %@, Latency: %f", adapter.key,
adapterStatus.description, adapterStatus.latency)
}
}

AdColony: Please follow the Step 3.

Pangle: Please follow the Step 3 and the Step 4.

Meta: Please follow the Step 3.

Liftoff Monetize: Please follow the Step 3.

App Lovin: Please follow the Step 3.