gpt4 book ai didi

ios - 有没有办法在 Info.plist 文件的其他地方引用 CFBundleIdentifier ?

转载 作者:行者123 更新时间:2023-11-28 18:58:03 26 4
gpt4 key购买 nike

对于我们的游戏,在 Info.plist 文件中,我们的 CFBundleIdentifier 设置为,

<key>CFBundleIdentifier</key>
<string>com.sixminute.$(PRODUCT_NAME:rfc1034identifier)</string>

但是,对于 Google Play 登录,我们需要 CFBundleURLTypes 中的以下 URL 类型,

        <key>CFBundleURLName</key>
<string>com.sixminute.$(PRODUCT_NAME:rfc1034identifier)</string>
<key>CFBundleURLSchemes</key>
<array>
<string>com.sixminute.$(PRODUCT_NAME:rfc1034identifier)</string>
</array>

有什么方法可以像 $(BUNDLE_IDENTIFIER) 或类似的那样动态地引用 CFBundleIdentifier 吗?

最佳答案

您可以按照以下步骤在目标属性中的 XCode 中定义用户变量:

  1. 转到目标应用的“build设置”
  2. 选择菜单“Editor”->“Add Build Setting”->“Add User-Defined Setting”
  3. 为每个配置命名您的变量(例如“BundleId”)及其值

然后在你的 plist 文件中你可以简单地使用:

<key>CFBundleIdentifier</key>
<string>${BundleId}</string>

关于ios - 有没有办法在 Info.plist 文件的其他地方引用 CFBundleIdentifier ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29827793/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com