iphone/ipad 开发需要多少个不同的签名证书
我是否需要为每个不同的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只需使用通配符 (*) 创建两个配置文件:
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