AEPCampaign 5.0.0

AEPCampaign 5.0.0

Maintained by Adobe Mobile, Adobe Mobile.



 
Depends on:
AEPCore< 6.0.0, >= 5.0.0
AEPIdentity< 6.0.0, >= 5.0.0
AEPServices< 6.0.0, >= 5.0.0
AEPRulesEngine< 6.0.0, >= 5.0.0
 

  • By
  • Adobe Experience Platform SDK Team

Adobe Experience Platform Campaign SDK

Cocoapods SPM CircleCI Code Coverage

About this project

The AEPCampaign extension represents the Campaign Standard Adobe Experience Platform SDK that is required for registering mobile devices with your Campaign instance as well as creating in-app messages for your mobile app. The extension also enables the setting of linkage fields for use in creating personalized in-app messages.

Requirements

  • Xcode 14.1 (or newer)
  • Swift 5.x

Installation

These are currently the supported installation options:

# Podfile
use_frameworks!

# For app development, include all the following pods
target 'YOUR_TARGET_NAME' do
    pod 'AEPCampaign'
    pod 'AEPCore'
    pod 'AEPServices'
    pod 'AEPIdentity'
    pod 'AEPRulesEngine'
    pod `AEPUserProfile`
    pod `AEPLifecycle`
    pod `AEPSignal`
end

# For extension development, include AEPCampaign and its dependencies
target 'YOUR_TARGET_NAME' do
    pod 'AEPCampaign'
    pod 'AEPCore'
    pod 'AEPServices'
    pod 'AEPIdentity'
    pod 'AEPRulesEngine'
end

Replace YOUR_TARGET_NAME and then, in the Podfile directory, type:

$ pod install

To add the AEPCampaign Package to your application, from the Xcode menu select:

File > Swift Packages > Add Package Dependency...

Enter the URL for the AEPCampaign package repository: https://github.com/adobe/aepsdk-campaign-ios.git.

When prompted, make sure you change the version to 3.0.0.

Alternatively, if your project has a Package.swift file, you can add AEPCampaign directly to your dependencies:

dependencies: [
    .package(name: "AEPCampaign", url: "https://github.com/adobe/aepsdk-campaign-ios.git", .upToNextMajor(from: "4.0.0"))
],
targets: [
    .target(name: "YourTarget",
            dependencies: ["AEPCampaign"],
            path: "your/path")
]

Project Reference

Include AEPCampaign.xcodeproj in the targeted Xcode project and link all necessary libraries to your app target.

Binaries

Run make archive from the root directory to generate .xcframeworks for each module under the build folder. Drag and drop all .xcframeworks to your app target in Xcode.

Documentation

Additional documentation for usage and SDK architecture can be found under the Documentation directory.

Contributing

Contributions are welcomed! Read the Contributing Guide for more information.

Licensing

This project is licensed under the Apache V2 License. See LICENSE for more information.