21

有没有一种简单的方法可以在 Xcode 项目中拥有每个配置的应用程序组权利字符串?

我们正在尝试使用两个目标中的“应用程序组”权利在 iOS 应用程序和今天的扩展程序之间共享设置。

我们遇到的问题是我们使用不同的捆绑包和团队 ID 构建应用程序,具体取决于它是企业版本还是发布版本。

当我使用 Xcode 6 的功能屏幕时,应用程序组以红色字体显示,我看不到单独更改每个配置的字符串的方法。

我认为以下其中一项会起作用,但我不知道我应该先尝试哪个:

  1. .xcconfig 文件
  2. 手动创建的授权文件
  3. 构建脚本
  4. 依赖于配置的 plist 条目

建议?

4

3 回答 3

27

您可以为每个配置使用不同的权利文件。这可以在 Xcode“构建设置”用户界面中指定,或通过构建配置文件 (.xcconfig) 完成。

示例 xcconfig:

CODE_SIGN_ENTITLEMENTS = Debug.entitlements

其中 for 的值CODE_SIGN_ENTITLEMENTS指向此配置的正确权利文件。您可以在 Xcode 中创建任意数量的配置。默认情况下 Xcode 创建 Debug 和 Release,您可以添加 Enterprise 并使用构建配置文件,该文件指向CODE_SIGN_ENTITLEMENTSEnterprise 构建的正确权利文件。

Xcode“功能”用户界面将创建和管理以您的构建产品命名的权利文件。如果需要,您可以直接编辑此文件。

  1. 为每个构建配置创建一个 XCConfig 构建配置文件。对于此示例,我们将只使用调试和发布,添加您自己的构建配置(例如 Enterprise)很简单。
  2. 如上所述,使用适当的CODE_SIGN_ENTITLEMENTS设置填充 xcconfig 文件。
  3. 在项目“信息”用户界面中,设置构建配置以使用适当的 XCConfig 文件:

在此处输入图像描述

  1. 您可以通过查看构建产品的代码签名权利构建设置来确认。您应该看到如下内容:

在此处输入图像描述

如果您在那里看到粗体文本,请突出显示该构建设置并点击delete。这将删除覆盖 xcconfig 设置的 Xcode 构建设置。

于 2014-09-08T22:58:30.507 回答
4

您可以通过“构建设置”进行设置。与设置不同捆绑 ID 的方式相同。

脚步:

  1. 添加新的“用户定义的设置” 在此处输入图像描述
  2. 为每个方案/配置 指定“APP_GROUP_ID”在此处输入图像描述
  3. 对其进行测试,为您的应用程序创建一个 IPA 并解压缩。
  4. 查看 .app 并右键单击然后选择“显示包内容”
  5. 查找权利文件。(如果您找不到权利文件,请查找.xcent文件并将扩展名更改为.entitlements
  6. 验证权利文件中的应用组值是否是您在步骤 2 中指定的正确应用组 ID。

干杯!

于 2017-06-01T03:41:47.380 回答
0

正如这个问题中的评论所表明的那样,Xcode 8 似乎有一个错误。

我认为我有一个非常粗糙和危险的,但可行的解决方法。

这个想法是只有 1 个 Xcode 8 看到的权利文件,并有一个脚本将其替换为您尝试构建的配置的正确文件。

此解决方法有许多步骤,并非所有步骤都是必需的。随着获得更多信息,我将尝试更新这篇文章。如果你敢测试这样的东西,请添加评论。

此外,在重新打开 Xcode 8 之前,可能需要删除旧的配置文件。

在打开 Xcode 8 之前删除派生数据似乎也有帮助。

警告!自行承担测试的风险。这会造成不可挽回的损害

  • 删除所有配置文件
  • 删除 DerivedData

设置这个黑客

  • 将此脚本保存到您的项目文件夹中。
  • 修补您的项目名称和目标名称,其中它读取 MyProject*
  • 修补您的配置名称
  • 检查此脚本尝试在 MyProject.entitlements 之上复制的每个配置权利文件名
  • 在所有配置中将 MyProject.entitlements 配置为权利文件
  • 对所有目标执行相同操作(如果您有例如 watchkit 应用程序)
  • 在运行脚本之前:
    • 在 Xcode 中选择正确的方案
    • 关闭 Xcode

脚本模板:

    #!/bin/bash                                                                                                                                                                                                                       

    echo

    if [ ! -n "$BASH" ] ;then echo Please run this script $0 with bash; exit 1; fi

    if [ $# -ne 1 ];  then
        echo
        echo "ERROR: one of the following expected as parameter: release alpha debug"
        echo
        exit -2
    fi

    chosen=$1

    echo "You have chosen build configuration $chosen"
    echo
    echo "This script is a workaround for Xcode 8 bug in handling different build configs and app groups."
    echo "(This scenario is most likely not on Apples list of things that developers are expected to do.)"
    echo
    echo "See comments in this SO answer"
    echo "http://stackoverflow.com/a/25734318/1148030"
    echo
    echo "1) This script must be run with Xcode 8 shut down."
    echo "2) All old provisioning profiles will be deteled. Xcode 8 will recreate them with hopefully correct build config."
    echo
    echo
    echo "WARNING: This will delete ALL provisioning profiles for all apps!"
    echo "WARNING: This will delete ALL MyProject named DerivedData."
    echo

    read -n 1 -s -p "Press any key to continue or Ctrl-C to cancel"

    echo

    # NOTE ABOUT DELETING DERIVED DATA                                                                                                                                                                                                
    # Deleting derived data fixes 2 bugs:                                                                                                                                                                                             
    # 1) Xcode 8 stubbornly generating some distribution profiles for old entitlements files                                                                                                                                          
    # 2) Install from HockeyApp fails due to signing verification error                                                                                                                                                               

    echo "Deleting derived datas"
    rm -vrf /Users/pelam/Library/Developer/Xcode/DerivedData/MyProject-*
    echo

    echo "Deleting provisioning profiles"
    rm -v ~/Library/MobileDevice/Provisioning\ Profiles/*.mobileprovision

    echo

    echo "Replacing target entitlements files"
    echo
    cp -v "./MyProjectTarget/MyProjectTarget.$chosen.entitlements" "./MyProjectTarget/MyProjectTarget.entitlements" || exit -1
    cp -v "./MyProjectAnotherTarget/MyProjectAnotherTarget.$chosen.entitlements" "./MyProjectAnotherTarget/MyProjectAnotherTarget.entitlements" || exit -1
    echo ADD COPY COMMANDS FOR OTHER TARGETS HERE

    echo
    echo "SUCCESS! Now run Xcode and verify that correct profiles are created."
    echo
    echo "NOTE:"
    echo "Running following command after starting Xcode 8 and waiting a bit can show you what appgroup is selected in each profile."
    echo "There should only the one correct app group or the release group. No duplicates in one file or mixed."
    echo "If you are not using multiple app groups, you can view the provisioning profile files in text editor to see that they contain correct settings for the configuration you are trying to build"
    echo "grep -a appgroup ~/Library/MobileDevice/Provisioning\ Profiles/*.mobileprovision"
    echo
    echo
于 2016-11-02T08:36:24.310 回答