Xcode - 如何使其对相同的代码库、不同的目标使用不同的 plist 文件
我有一个代码库,需要将其构建为两个不同的目标。唯一的区别是它们读取不同的 config.plist,目标 #1 的 config-1.plist 和目标 #2 的 config-2.plist。为了实现这一目标,我需要在大楼里做什么?
I have a code base that I need to build out to two different targets. The only difference is they read different config.plists, config-1.plist for target #1 and config-2.plist for target #2. What do I need to do in the building to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样:
在 Packaging 部分中,您应该会看到一个名为 Info 的设置.plist 文件。
当然,您还需要创建两个 plist 文件。
Like this:
In the Packaging section, you should see a setting called Info.plist file.
You also need to create the two plist-files of course.