Edit in GitHubLog an issue

Add the required dependencies to your project by including them in the app's Gradle file.

Copied to your clipboard
// Use the BOM to manage Adobe Mobile SDK versions
implementation(platform("com.adobe.marketing.mobile:sdk-bom:3.+"))
// Adobe Mobile SDK dependencies (versions managed by BOM)
implementation("com.adobe.marketing.mobile:core")
implementation("com.adobe.marketing.mobile:edge")
// Content Analytics (not yet in BOM - specify version explicitly)
implementation("com.adobe.marketing.mobile:contentanalytics:1.0.0")

Add the required dependencies to your project by including them in the app's Gradle file.

Copied to your clipboard
// Use the BOM to manage Adobe Mobile SDK versions
implementation platform('com.adobe.marketing.mobile:sdk-bom:3.+')
// Adobe Mobile SDK dependencies (versions managed by BOM)
implementation 'com.adobe.marketing.mobile:core'
implementation 'com.adobe.marketing.mobile:edge'
// Content Analytics (not yet in BOM - specify version explicitly)
implementation 'com.adobe.marketing.mobile:contentanalytics:1.0.0"

Add the required dependencies to your project using CocoaPods. Add following pods in your Podfile:

Copied to your clipboard
use_frameworks!
target 'YourTargetApp' do
pod 'AEPCore', '~> 5.0'
pod 'AEPEdge', '~> 5.0'
pod 'AEPContentAnalytics', '~> 5.0'
end

Add the required dependencies to your project using Swift Package Manager. For Content Analytics, use the following instructions.

  1. In Xcode, select File > Add Package Dependencies.

  2. Enter the package URL:

    Copied to your clipboard
    https://github.com/adobe/aca-mobile-sdk-ios-extension
  3. Select version 5.0.0 or later.

  4. Select Add Package.

  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2026 Adobe. All rights reserved.