我该如何为推送通知签署Mac应用?

时间:2015-07-14 03:40:22

标签: macos apple-push-notifications provisioning-profile

我正在尝试开发一个推送通知的小型企业工具。我有通过开发证书和开发配置和证书到达的通知,但不是在发布模式下。

我得到的错误是

if (a > b && a > c) { Console.WriteLine (a); } else if (b > a && b > c) { Console.WriteLine (b); } else { Console.WriteLine (c); }

如果我只是想分发.app文件,我应该使用开发者ID吗?或者我可以使用我现在尝试做的事情,只使用Mac Distribution配置文件和Mac App Distribution证书吗?

1 个答案:

答案 0 :(得分:0)

您可以尝试使用codesign

对应用进行签名

codesign --sign "Developer ID Application: MyCompany (123)" /path/to/myapp.app

这样的东西