Adobe Experience Platform Mobile SDKs - Optimize extension
About this project
The AEPOptimize extension provides APIs to enable real-time personalization workflows in the Adobe Experience Platform Mobile SDKs using Adobe Target or Adobe Journey Optimizer Offer Decisioning. It requires AEPCore and AEPEdge extensions to send personalization query events to the Experience Edge network.
Requirements
- Xcode 14.1 (or newer)
- Swift 5.1 (or newer)
Installation
These are currently the supported installation options:
CocoaPods
# Podfile
use_frameworks!
# for app development, include all the following pods
target 'YOUR_TARGET_NAME' do
pod 'AEPCore'
pod 'AEPEdge'
pod 'AEPOptimize'
end
Replace YOUR_TARGET_NAME
and then, in the Podfile
directory, type:
$ pod install
Swift Package Manager
To add the AEPOptimize Package to your application, from the Xcode menu select:
File > Swift Packages > Add Package Dependency...
Enter the URL for the AEPOptimize package repository: https://github.com/adobe/aepsdk-optimize-ios.git
. Click Next.
Specify the Version rule for the package options. Click Next and Finish.
Alternatively, if your project has a Package.swift
file, you can add AEPOptimize directly to your dependencies:
dependencies: [
.package(url: "https://github.com/adobe/aepsdk-optimize-ios.git", .upToNextMajor(from: "4.0.0"))
],
targets: [
.target(name: "YourTarget",
dependencies: ["AEPOptimize"],
path: "your/path"),
]
]
Binaries
To generate AEPOptimize.xcframework
, run the following Makefile target from the project root directory:
$ make archive
This generates the xcframework under the build
folder. Drag and drop the .xcframework
to your app target in Xcode.
Development
To install pod dependencies after you clone or download this project, run the following Makefile target from the root directory:
make pod-install
To fetch latest versions of the dependencies, run the following Makefile target from the project root directory:
make pod-update
Open the project Xcode workspace
To open the project workspace in Xcode, click on AEPOptimize.xcworkspace
or run the following Makefile target from the project root directory:
make open
Run tests
To execute the tests, run the following Makefile target from the project root directory:
make test
Documentation
Check out the Documentation directory to learn more about the Optimize extension.
Try out this Optimize extension tutorial to retrieve and track Adobe Target offers fetched via Experience Edge network using the provided sample application.
Related Projects
Project | Description |
---|---|
AEPCore Extensions | The AEPCore extensions provide a common set of functionality and services required by all the Mobile SDK extensions. |
AEPEdge Extension | The AEPEdge extension enables sending data to Adobe Experience Platform from Mobile Apps. |
AEP SDK Sample App for iOS | It contains iOS sample apps, both Objective-C and Swift variants, for the AEP Mobile SDKs. |
Contributing
Contributions are welcome! Read the Contributing Guide for more information.
Licensing
This project is licensed under the Apache V2 License. See LICENSE for more information.