Skip to content

New SDK Initialization API

AppLovin iOS SDK 12.3.1 introduces a new set of SDK initialization APIs. This deprecates the old way of initializing the SDK. The new APIs provide a straightforward and organized way to initialize the SDK. They also address issues with the old APIs.

Create the SDK Initialization Configuration

Before you initialize the SDK, create an initialization configuration object for the SDK in your app delegate’s application:applicationDidFinishLaunching: method.

This configuration object allows you to configure the properties that the SDK will initialize with. These initialization properties are immutable, with the exception of ALSdkSettings which contains mutable properties that can be changed during the lifetime of the app.

// Create the initialization configuration
ALSdkInitializationConfiguration *initConfig = [ALSdkInitializationConfiguration configurationWithSdkKey: @"«SDK-key»" builderBlock:^(ALSdkInitializationConfigurationBuilder *builder) {
builder.mediationProvider = ALMediationProviderMAX;
// Perform any additional configuration/setting changes
}];

Initialize the SDK

Initialize the AppLovin SDK with the initialization configuration object. Do this at startup. This maximizes the time the SDK can take to cache mediated network ads, which results in a better user experience.

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Create the initialization configuration
ALSdkInitializationConfiguration *initConfig = [ALSdkInitializationConfiguration configurationWithSdkKey: @"«SDK-key»" builderBlock:^(ALSdkInitializationConfigurationBuilder *builder) {
builder.mediationProvider = ALMediationProviderMAX;
}];
// Initialize the SDK with the configuration
[[ALSdk shared] initializeWithConfiguration: initConfig completionHandler:^(ALSdkConfiguration *sdkConfig) {
// Start loading ads
}];

Example

Below is a sample integration that calls the new APIs. You can also refer to this commit in the demo app, which demonstrates its migration to the new API.

// Create the initialization configuration
ALSdkInitializationConfiguration *initConfig = [ALSdkInitializationConfiguration configurationWithSdkKey: @"«SDK-key»" builderBlock:^(ALSdkInitializationConfigurationBuilder *builder) {
builder.mediationProvider = ALMediationProviderMAX;
builder.userSegment = [[ALUserSegment alloc] initWithName: @"«user-segment»"];
builder.targetingData = [[ALTargetingData alloc] initWithBuilderBlock:^(ALTargetingDataBuilder *targetingDataBuilder) {
targetingDataBuilder.email = @"«email-address»";
targetingDataBuilder.keywords = @[@"«key»:«word»", @"«foo»:«bar»"];
}];
}];
// Configure the SDK settings if needed before or after SDK initialization.
ALSdkSettings *settings = [ALSdk shared].settings;
settings.userIdentifier = @"«user-ID»";
[settings setExtraParameterForKey: @"uid2_token" value: @"«token-value»"];
// Note: you may also set these values in your Info.plist
settings.termsAndPrivacyPolicyFlowSettings.enabled = YES;
settings.termsAndPrivacyPolicyFlowSettings.termsOfServiceURL = [NSURL URLWithString: @"«https://your_company_name.com/terms_of_service»"];
settings.termsAndPrivacyPolicyFlowSettings.privacyPolicyURL = [NSURL URLWithString: @"«https://your_company_name.com/privacy_policy»"];
// Initialize the SDK with the configuration
[[ALSdk shared] initializeWithConfiguration: initConfig completionHandler:^(ALSdkConfiguration *sdkConfig) {
// Start loading ads
}];