Edit in GitHubLog an issue

Adobe Audience Manager

Adobe Audience Manager is a versatile audience data management platform. With the SDK, you can update audience profiles for users and retrieve user segment information from your mobile app. For more information, see Adobe Audience Manager.

Configuring the Audience Manager extension in the Data Collection UI

Adobe Audience Manager Extension Configuration

  1. In the Data Collection UI, select the Extensions tab.
  2. Choose Catalog, locate the Adobe Audience Manager extension, and select Install.
  3. Type your Audience Manager server.
  4. Type a timeout value. This value is the period, in seconds, to wait for a response from Audience Manager before timing out. For best practices, you should use a default value of 2s.
  5. Select Save.
  6. Follow the publishing process to update the SDK configuration.

Add Audience Manager to your app

Java

  1. Add the library to your project.
  2. Import the library.
Copied to your clipboard
import com.adobe.marketing.mobile.*;

Audience Manager depends on the Identity extension and is automatically included in the Core pod. When manually installing the Audience Manager extension, ensure that you add the identity-1.x.x.aar library to your project.

Register Audience Manager with Mobile Core

Java

Call the setApplication() method once in the onCreate() method of your main activity.

For example, your code might look like the following:

Copied to your clipboard
public class AudiencetApp extends Application {
@Override
public void onCreate() {
super.onCreate();
MobileCore.setApplication(this);
try {
Audience.registerExtension(); //Register Audience Manager with Mobile Core
Identity.registerExtension();
MobileCore.start(null);
} catch (Exception e) {
//Log the exception
}
}
}

Implement Audience Manager APIs

For more information about implementing Audience Manager APIs, please read the Audience Manager API reference.

Additional information

Was this helpful?
  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2024 Adobe. All rights reserved.