AEPUserProfile
关于此项目
Adobe Experience Platform UserProfile 移动扩展是针对 Adobe Experience Platform SDK 的一个扩展。
要了解更多关于此扩展的信息,请阅读 Adobe Experience Platform Profile 移动扩展。
选择
- Xcode 14.1(或更新版本)
- Swift 5.1(或更新版本)
安装
CocoaPods
# Podfile
use_frameworks!
# for app development, include all the following pods
target 'YOUR_TARGET_NAME' do
pod 'AEPCore'
pod 'AEPUserProfile'
end
# for extension development, include AEPCore and its dependencies
target 'YOUR_TARGET_NAME' do
pod 'AEPCore'
pod 'AEPUserProfile'
end
Swift Package Manager
要将 AEPUserProfile 包添加到您的应用程序中,请从 Xcode 菜单选择
文件 > Swift 包 > 添加包依赖...
输入 AEPUserProfile 包仓库的 URL: https://github.com/adobe/aepsdk-userprofile-ios.git
。
当提示时,输入特定版本或版本范围以指定版本规则。
或者,如果您的项目有 Package.swift
文件,您可以直接将 AEPUserProfile 添加到您的依赖项中
dependencies: [
.package(url: "https://github.com/adobe/aepsdk-userprofile-ios.git", .upToNextMajor(from: "4.0.0")),
],
targets: [
.target(name: "YourTarget",
dependencies: ["AEPUserProfile"],
path: "your/path")
]
二进制文件
要生成 AEPUserProfile.xcframework
,运行以下命令
make archive
开发
第一次克隆或下载项目时,您应该从根目录运行以下命令来设置环境
make pod-install
随后,您可以通过运行以下命令确保您的环境已更新
make pod-update
打开 Xcode 工作区
您可以通过在仓库的根目录中运行以下命令来在 Xcode 中打开工作区
make open
命令行集成
您可以从命令行运行所有测试套件
make test
贡献
欢迎贡献!阅读贡献指南了解更多信息。
许可
本项目中包含的代码受到 Apache V2 许可的许可。请参阅 LICENSE 获取更多信息。