Get Started
Release Version | Release Date |
---|---|
3.4.0-beta.2 | 11.10.2024 |
Follow this guide to get the best out of Appodeal.
The Appodeal SDK gives you access to 70+ Ad Demand Sources and makes them compete against each other in a real-time auction, maximizing your ad revenues. The Appodeal SDK also provides In-app Bidding, Automatic UA Optimization, User Segmentation & A/B Testing, Cross-Promotion and Direct Deals, Instant Payouts, and much more.
Appodeal SDK provides two ways of integration. From the options below, choose the one that fits your needs better:
- Appodeal SDK Full Package
- Appodeal SDK Mediation Only
The Appodeal SDK Full Package - The Appodeal SDK provides you with tools to grow your mobile apps and games. In addition to the monetization services, you can benefit from UA (User Acquisition) and in-app analytics services. Here is the list of services Appodeal SDK Full Package includes:
-
Get started with Appodeal to gain access to Monetization and Analytics.
-
Connect with Adjust or AppsFlyer to unlock Attribution features.
-
Connect with Meta (formerly known as facebook-core) for User Acquisition.
-
Connect with Firebase for Analytics + remote config for product A/B tests and settings.
If you plan to run UA campaigns, want to analyze your metrics in our Appodeal's business intelligence tool without using MMP, or want to use remote config for tests and settings, your option is - The Appodeal SDK Full Package.
The Appodeal SDK Mediation only - If you do not plan to run (UA) User Acquisition campaigns, nor want to use Appodeal advanced analytics, we have created a lite version of our SDK, only with mediation. During the integration, you will not be required to install any additional services apart from mediation. This may speed up your integration process, and you can always upgrade to the Full Package whenever you're ready.
Please follow this integration guide step by step and choose your integration option when needed.
The following document shows how to integrate Appodeal in your iOS project with your desired networks via CocoaPods and manual setup, and configure all your ad formats.
- iOS 13.0 or higher (only if you use Firebase, iOS 12.4 if you use MyTarget, otherwise iOS 12.0 or higher is sufficient). You still can integrate Appodeal SDK into a project with a lower value of minimum iOS version. However, on devices that don't support iOS 12.0+ our SDK will just be disabled.
- Appodeal SDK is compatible with both ARC and non-ARC projects.
- Xcode 15.3 or higher.
You can use our demo app as a reference project.
Demo App
Step 1. Import SDK
Fat and CocoaPods SDK versions work in pure Obj-C, and Swift as well as mixed Obj-C or Swift projects.
If your project is a pure Objective-C project, you should add an empty Swift file, for example, Dummy.swift
.
Xcode will offer you to create Bridging Header after adding the empty Swift file, press "Create".
- Appodeal SDK Full Package
- Appodeal SDK Mediation Only
Please select the ad types that are used in your application and the ad networks that you want to include.
As you have selected Appodeal SDK Full Package option, make sure you have not excluded services from the Podfile or from the SDK package.
We recommend using the standard configuration, as disabling some of the recommended adapters can negatively affect revenue.
If you want to use Appodeal as a mediation only, you need to exclude services from the Podfile or from the SDK package.
Please select the ad types that are used in your application and the ad networks that you want to include, make sure services are excluded.
We recommend using the standard configuration, as disabling some of the recommended adapters can negatively affect revenue.
- Cocoa Pods
- Manual
- Podfile configuration
CocoaPods 1.12.0 or higher is required. To get information about CocoaPods update, please see this documentation.
Here is a base and recommended Podfile
sample code.
You can add or remove any ad network or service adapter depending on your requirements.
We provide a convenient and interactive way to customize and generate Podfile
code based on selected ad types, networks and services.
To configure your Podfile
please visit Configure Mediated Networks page.
Appodeal 3.4.0-beta.2 is fully compatible with iOS 18. If you have implemented Appodeal 3.4.0-beta.1 and faced a problem while
publishing your app to the AppStore please update to Appodeal 3.4.0-beta.2 version. If there is no possibility for update
to fix the issue just remove APDSmaatoAdapter
and BidMachineSmaatoAdapter
from your podfile or use the post-install hook provided below.
post_install do |installer|
xcframework_path = "#{installer.sandbox.root}/smaato-ios-sdk/vendor"
Dir.glob("#{xcframework_path}/**/*.framework/OMSDK_Smaato").each do |binary|
if File.exist?(binary)
puts "Stripping bitcode from: #{binary}"
system("xcrun bitcode_strip #{binary} -r -o #{binary}")
end
end
end
- Call pod install
Call $ pod install
to install CocoaPods dependencies or $ pod update
to update.
If you do not have an installed pod, Install CocoaPods
to simplify dependency management
sudo gem install cocoapods
If you have problems with pods versions, please run the following code:
rm -rf "${HOME}/Library/Caches/CocoaPods"
rm -rf "`pwd`/Pods/"
pod update
If the official repo doesn't respond, you can add lines to your podspec and update pods from the Appodeal mirror repository:
source 'https://github.com/appodeal/CocoaPods.git'
source 'https://cdn.cocoapods.org/'
If you are receiving error like this
[!] CDN: trunk URL couldn't be downloaded: https://cdn.cocoapods.org/Specs/0/3/e/Appodeal/${VERSION}/Appodeal.podspec.json Response: Failure when receiving data from the peer
please run the following command
pod repo remove trunk
- Open your project using .xcworkspace file from now on.
- Download SDK
Integrate iOS SDK 3.4.0-beta.2
SDK 3.4.0-beta.2
Please keep in mind that APDBidMachinePangleAdapter is compatible with iOS 13 and later versions.
- Copy files to your project
Open your project in Xcode, then drag the downloaded frameworks into your project. (use the "Product Navigator view").
Select the ad types that are used in your application and the ad networks that you want to include, and select services if you use Appodeal SDK Full Package.
Choose "Copy items into destination group's folder" and click "Finish".
- Add Linker flag
Now you need to add the -ObjC linker flag. In your XCode project click
Project -> Build Settings -> Search for "Other Linker Flags" -> Add -ObjC
.
Add libraries to Build Phases -> Link Binary with Libraries to ensure compatibility with Objective-C categories and low-level system functions:
libc++.tbd
libresolv.tbd
libz.tbd
libc++abi.tbd
libbz2.tbd
- Set Embed and Sign for Frameworks
In your Xcode project, go to Project -> General -> Frameworks, Libraries, and Embedded Content section. Ensure the following frameworks are set to Embed & Sign
:
FBSDKCoreKit.xcframework
DTBiOSSDK.xcframework
InMobiSDK.xcframework
AppLovinSDK.xcframework
OMSDK_Appodeal.xcframework
FBSDKCoreKit_Basics.xcframework
FBAEMKit.xcframework
Step 2. Prepare Your Application
Add SKAdNetworkIds
Ad networks used in Appodeal mediation support conversion tracking using Apple's SKAdNetwork
,
which means ad networks are able to attribute an app install even when IDFA is unavailable.
To enable this functionality, you will need to update the SKAdNetworkItems
key with an additional
dictionary in your Info.plist
.
If you are using Xcode 14+ and SwiftUI in your app, then you can notice that there is no Info.plist in project navigator by default.
You need to go to Target → Info tab → Custom iOS Target Properties and make any changes to it by simply adding an empty line so the Info.plist file shows up in your project navigator.
- Select Info.plist in the Project navigator in Xcode
- Right-click on Info.plist file → Open as → Source Code
- Copy the SKAdNetworkItems from below and paste it into your Info.plist file
There is SKAdNetworks IDs in Info.plist format
<key>SKAdNetworkItems</key>
<array>
</array>
Configure App Transport Security Settings
In order to serve ads, the SDK requires you to allow arbitrary loads. Set up the following keys in Info.plist of your app:
- Go to your Info.plist file, then press Add+ anywhere in the first column of the key list.
- Add App Transport Security Settings key and set its type to Dictionary in the second column.
- Press Add+ at the end of the name App Transport Security Settings key and choose Allow Arbitrary loads. Set its type to Boolean and its value to Yes.
You can also add the key to your Info.plist directly, using this code:
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
Location Description (Optional)
NSLocationWhenInUseUsageDescription - Entry is required if your application allows Appodeal SDK to use location data.
<key>NSLocationWhenInUseUsageDescription</key>
<string><App Name> needs your location for analytics and advertising purposes</string>
To use location services, your app requests authorization, and the system prompts the user to grant or deny the request.
Please implement Core Location and ask users permission according to the official documentation.
Other Feature Usage Descriptions
To improve ad performance the following entries should be added:
- GADApplicationIdentifier - When including AdMob in your project,
you must also add your AdMob app ID to your info.plist.
Use the key
GADApplicationIdentifier
with the value being your AdMob app ID. For more information about Admob sync check out our Admob guide. - NSUserTrackingUsageDescription - Starting from iOS 14, using IDFA requires permission from the user. The following entry must be added in order to improve ad performance.
- NSCalendarsUsageDescription - Recommended by some ad networks.
<key>GADApplicationIdentifier</key>
<string>YOUR_ADMOB_APP_ID</string>
<key>NSUserTrackingUsageDescription</key>
<string><App Name> needs your advertising identifier to provide personalised advertising experience tailored to you</string>
<key>NSCalendarsUsageDescription</key>
<string><App Name> needs your calendar to provide personalised advertising experience tailored to you</string>
Please note, if you have removed the Admob adapter, don't forget to remove the BDMNotsyAdapter as well using this guide.
Step 3. Initialize SDK
Before initialisation, we highly recommend to receive all required permissions from the user. Please follow this Data Protection guide.
Import Appodeal into AppDelegate (AppDelegate.m) and initialize the SDK:
- Swift
- Objective-C
import Appodeal
#import <Appodeal/Appodeal.h>
We recommended to call initialization method
in AppDelegate -didFinishLaunchingWithOptions:
function:
- Swift
- Objective-C
@UIApplicationMain
final class MyAppDelegate: UIResponder, UIApplicationDelegate, AppodealInitializationDelegate {
func application(
_ application: UIApplication, didFinishLaunchingWithOptions
launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil
) -> Bool {
Appodeal.setAutocache(false, types: .interstitial)
Appodeal.setLogLevel(.verbose)
// New optional delegate for initialization completion
Appodeal.setInitializationDelegate(self)
/// Any other pre-initialization
/// app specific logic
Appodeal.initialize(
withApiKey: "APP_KEY",
types: .interstitial
)
return true
}
func appodealSDKDidInitialize() {
// Appodeal SDK did complete initialization
}
}
@interface MyAppDelegate () <AppodealInitializationDelegate>
@end
@implementation MyAppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[Appodeal setAutocache:NO types:AppodealAdTypeInterstitial]; [Appodeal setLogLevel:APDLogLevelVerbose];
// New optional delegate for initialization completion
[Appodeal setInitializationDelegate:self];
/// Any other pre-initialization
/// app specific logic
[Appodeal initializeWithApiKey:@"APP KEY" types:AppodealAdTypeInterstitial];
return YES;
}
- (void)appodealSDKDidInitialize {
// Appodeal SDK did complete initialization
}
@end
adTypes
is a parameter responsible for ad formats (ex. AppodealAdTypeRewardedVideo, AppodealAdTypeInterstitial
).
Initialize only those ad types you want to use in your app to avoid getting ad requests to unused ones.
consent
is an object responsible for agreement to having user's personal data collected according to GDPR and CCPA laws.
You can find more information here.
Make sure to replace YOUR_APP_KEY
with the actual app key.
You can find it in the list of applications in your personal account.
Step 4. Configure Ad Types
Appodeal SDK is now imported and you're ready to implement an ad. Appodeal offers a number of different ad formats, so you can choose the one that best fits your app's user experience.
Attention-grabbing full-screen ad with a static ad display.
User-initiated ads where users can earn in-app rewards in exchange for viewing a video ad.
Traditional ad format that neatly places a small ad at the top or bottom of the screen.
Medium-rectangule ads (300x250px) that appear within in-app content.
Ad format that seamlessly fits within the context of an app’s content.
Step 5. What's next
Configure App Privacy
Configure App Privacy according to this doc:
App Privacy Details
Add App-ads.txt File
The app-ads.txt file is a text file which provides a mechanism for publishers to declare their authorized digital sellers.
You can find detailed information here