Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一些二进制文件(可执行文件和一些动态库),我想将它们包含在应用程序包中。我该如何将它们添加到 xcode 中,例如存档时它们都已正确签名?
您可以将二进制文件放在捆绑包中的任何位置。只需在您的目标中创建一个“复制文件”构建阶段。而且,在签署主包之前,您必须单独签署此二进制文件。您还可以创建“运行脚本”阶段并在此阶段内签署您的二进制文件。
codesign -s "authority" "${TARGET_BUILD_DIR}/path/to/your/lib.dylib"