Xcode - 如何使其对相同的代码库、不同的目标使用不同的 plist 文件

发布于 2024-11-01 07:10:50 字数 124 浏览 6 评论 0原文

我有一个代码库,需要将其构建为两个不同的目标。唯一的区别是它们读取不同的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

善良天后 2024-11-08 07:10:50

像这样:

  • 从左侧的导航器中选择您的项目
  • 选择要更改的目标(在 TARGETS 下)
  • 单击“Build Settings”
  • 搜索“Info.plist”

在 Packaging 部分中,您应该会看到一个名为 Info 的设置.plist 文件。

  • 将其更改为“config-2.plist”或您想要的任何内容。

当然,您还需要创建两个 plist 文件。

Like this:

  • Select your project from the navigator to the left
  • Select the target you want to change (under TARGETS)
  • Click "Build Settings"
  • Search for "Info.plist"

In the Packaging section, you should see a setting called Info.plist file.

  • Change that to you "config-2.plist" or whatever you want.

You also need to create the two plist-files of course.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文