adobe/aepsdk-assurance-ios
Adobe Experience Platform Assurance is a product from Adobe Experience Cloud to help you inspect, proof, simulate, and validate how you collect data or serve experiences in your mobile app. For more information on what Assurance can do for you, see [here](https://experienceleague
About this project
Adobe Experience Platform Assurance is a product from Adobe Experience Cloud to help you inspect, proof, simulate, and validate how you collect data or serve experiences in your mobile app. For more information on what Assurance can do for you, see here. To integrate Assurance in your app, refer to the documentation.
Requirements
- Xcode 15.0 or newer
- Swift 5.1 or newer
Installation
Binaries
To generate an AEPAssurance.xcframework, run the following command:
$ make archiveThis generates the xcframework under the build folder. Drag and drop all the .xcframeworks to your app target in Xcode.
CocoaPods
# Podfile
use_frameworks!
target 'YOUR_TARGET_NAME' do
pod 'AEPAssurance', '~> 5.0.0'
endReplace YOUR_TARGET_NAME and then, in the Podfile directory, type:
$ pod installSwift Package Manager
To add the AEPAssurance Package to your application, from the Xcode menu select:
File > Swift Packages > Add Package Dependency...
Enter the URL for the AEPAssurance package repository: https://github.com/adobe/aepsdk-assurance-ios.git.
When prompted, input a specific version or a range of versions for Version rule.
Alternatively, if your project has a Package.swift file, you can add AEPAssurance directly to your dependencies:
dependencies: [
.package(url: "https://github.com/adobe/aepsdk-assurance-ios.git", .upToNextMajor(from: "5.0.0"))
],
targets: [
.target(name: "YourTarget",
dependencies: ["AEPAssurance"],
path: "your/path")
]TestApps
Two sample apps are provided (one each for Swift and Objective-c) which demonstrate setting up and getting started with Assurance extension. Their targets are in AEPAssurance.xcodeproj, runnable in AEPAssurance.xcworkspace. Sample app source code can be found in the TestApp and TestAppObjC directories.
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-installSubsequently, you can make sure your environment is updated by running the following:
make pod-updateOpen the Xcode workspace
Open the workspace in Xcode by running the following command from the root directory of the repository:
make openCommand line integration
You can run all the test suites from command line:
make testDocumentation
Additional documentation for configuration and SDK usage can be found under the Documentation directory.
Contributing
Contributions are welcomed! Read the Contributing Guide for more information. We look forward to working with you!
Licensing
This project is licensed under the Apache V2 License. See LICENSE for more information.
Package Metadata
Repository: adobe/aepsdk-assurance-ios
Default branch: main
README: README.md