我为我的 XCode 项目的构建自动化设置了 Fastlane。至少 Fastfile(包含构建选项)应该在 GIT 中,但我也很乐意在 GIT 中拥有 Appfile(团队标识符)。主要问题: Appfile 应该包含我的苹果 ID。样本:
apple_id "myid@gmail.com" # Your Apple email address
# Default team ID
team_id "AUE7D4LRRX"
for_platform :ios do
for_lane :production do
team_id '-' #reset team id
end
end
是否有可能从 apple/xcode 首选项中动态检索 apple id?在这个当前的解决方案中,我无法将此 Appfile 添加到 GIT,因为每个开发人员都会拥有自己的该文件版本……当然还有不同的苹果 ID!
谢谢和最好的问候!