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 versionsimplementation(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")
Using dynamic dependency versions is not recommended for production apps. Please read the managing Gradle dependencies guide for more information.
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 versionsimplementation 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"
Using dynamic dependency versions is not recommended for production apps. Please read the managing Gradle dependencies guide for more information.
Add the required dependencies to your project using CocoaPods. Add following pods in your Podfile:
Copied to your clipboarduse_frameworks!target 'YourTargetApp' dopod '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.
In Xcode, select File > Add Package Dependencies.
Enter the package URL:
Copied to your clipboardhttps://github.com/adobe/aca-mobile-sdk-ios-extensionSelect version
5.0.0or later.Select Add Package.
