AEPEdgeIdentity

5.0.0

Adobe Experience Platform Identity mobile extension for Adobe Edge Network in Swift
adobe/aepsdk-edgeidentity-ios

What's New

v5.0.0

2024-03-20T01:44:14Z

Release Notes

Major version update for Identity for Edge Network for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 5.0.0. The current release includes the following changes:

  • Updated the minimum supported version to iOS 12.0 and tvOS 12.0.
  • Include XCFrameworks built with Xcode 15.0.1 with the GitHub release.

Changes

Full Changelog: 5.0.0...5.0.0

Adobe Experience Platform Edge Identity Mobile Extension

CocoaPods SPM CircleCI Code Coverage

About this project

The AEP Edge Identity mobile extension enables handling of user identity data from a mobile application when using the Adobe Experience Platform SDK and the Edge Network extension.

Requirements

  • Xcode 15 (or newer)
  • Swift 5.1 (or newer)

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 'AEPEdgeIdentity'
 	pod 'AEPCore'
 	pod 'AEPEdge'
end

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

$ pod install

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

File > Add Packages...

Note The menu options may vary depending on the version of Xcode being used.

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

When prompted, input a specific version or a range of version for Version rule.

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

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

Binaries

To generate an AEPEdgeIdentity.xcframework, run the following command:

$ make archive

This generates the xcframework under the build folder. Drag and drop all the .xcframeworks to your app target in Xcode.

Development

The first time you clone or download the project, you should run the following from the root directory to setup the environment:

make pod-install

Subsequently, you can make sure your environment is updated by running the following:

make pod-update

Open the Xcode workspace

Open the workspace in Xcode by running the following command from the root directory of the repository:

make open

Command line integration

You can run all the test suites from command line:

make test

Related Projects

Project Description
AEPCore Extensions The AEPCore and AEPServices represent the foundation of the Adobe Experience Platform SDK.
AEPEdge Extension The AEPEdge extension allows you to send data to the Adobe Experience Platform (AEP) from a mobile application.
AEP SDK Sample App for iOS Contains iOS sample apps for the AEP SDK. Apps are provided for both Objective-C and Swift implementations.
AEP SDK Sample App for Android Contains Android sample app for the AEP SDK.

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.

Description

  • Swift Tools 5.3.0
View More Packages from this Author

Dependencies

Last updated: Sun Dec 14 2025 08:26:22 GMT-1000 (Hawaii-Aleutian Standard Time)