iphone/ipad 开发需要多少个不同的签名证书

发布于 2024-10-02 14:48:14 字数 344 浏览 0 评论 0原文

我是否需要为每个不同的 appID 使用不同的签名证书?或者我只需要不同的配置文件?

如果我有两个应用程序:com.domain.app1 和 com.domain.app2,我只需要创建 4 个配置文件吗?

1 - com.domain.app1 的开发配置文件 1 - com.domain.app1 的分发配置文件

1 - com.domain.app2 的开发配置文件 1 - com.domain.app2 的分发配置文件

另外,您知道当我尝试创建新应用程序时,为什么我的新 AppId/Bundle ID 没有显示在我的 iTunes Connect 中吗?这是否意味着我需要先创建分发配置文件?

Do I need a different signing certificate for each different appID? or do I just need different provisioning profiles?

If I have two apps: com.domain.app1 and com.domain.app2 do I just need to create 4 provision profiles?

1 - Dev Profile for com.domain.app1
1 - distribution profile for com.domain.app1

1 - Dev profile for com.domain.app2
1 - Distribution profile for com.domain.app2

Also do you know why my new AppId/Bundle ID does not show up in my iTunes Connect when I try to create a new APP? Does this mean I need to create the distribution profile first?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

十二 2024-10-09 14:48:14

您只需使用通配符 (*) 创建两个配置文件:

1) 您的开发配置文件。

com.domaindev.*

2) 您的发布配置文件。

com.domaindev.* 开发应用

程序时,您可以通过将通配符替换为应用程序特定的字符串来重复使用任意数量的不同版本的配置文件。即 -

com.domaindev.app1、com.domaindev.app2、com.domainrelease.app1、com.domainrelease.app2

You should only need to create two provisioning profiles using the wildcard character (*):

1) Your dev profile.

com.domaindev.*

2) Your release profile.

com.domainrelease.*

When developing your apps, you can re-use the profiles for any number of different releases by replacing the wildcard with an app specific string. Ie -

com.domaindev.app1, com.domaindev.app2, com.domainrelease.app1, com.domainrelease.app2

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