更改捆绑包种子 ID,升级时使用相同的捆绑包 ID
我之前问过类似的问题(https://stackoverflow.com/questions/4553741/clashing -app-id-that-needs-removing),但也许我可以提出不同的方式:
我可以通过更改捆绑包种子 ID 来更新 App Store 中的现有应用程序,但保持捆绑包 ID相同的?
即,从:
DFG5TY7E3.com.domain.appName
到:
HGERF562D.com.domain.appName
这会导致任何问题吗?我知道如果我更改捆绑包 ID (com.domain.appName),它不会升级,但不确定捆绑包种子 ID (DFG5TY7E3)。有关为什么我需要这样做的完整解释,请参阅上面的链接...
I asked a similar question earlier (https://stackoverflow.com/questions/4553741/clashing-app-id-that-needs-removing), but perhaps I can ask a different way:
Am I able to update an existing application in the App Store by changing the bundle Seed ID, but keeping the bundle ID the same?
ie, going from:
DFG5TY7E3.com.domain.appName
To:
HGERF562D.com.domain.appName
Does this cause any problems? I know that if I change the bundle ID (com.domain.appName) it will not upgrade, but not sure on the bundle seed id (DFG5TY7E3). See the link above for a full explanation as to why I need to do this...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
所以我今天通过电话与苹果公司进行了交谈。他们提出了以下建议:
只要我不在我的应用程序中使用设备钥匙串(无论那是什么?),我就可以使用新的捆绑种子 ID
引用本文:
来自: http://developer.apple.com/library/ios/ #qa/qa2009/qa1680.html
由此他们得出结论,我没有必要使用相同的包种子 ID。我将对此进行测试并在将其标记为已回答之前让您知道。
So I have spoken to Apple today via the phone. They have suggested the following:
I can use a new Bundle Seed ID as long as I am not using the device Keychain in my app (whatever that is?)
The quote this article:
From: http://developer.apple.com/library/ios/#qa/qa2009/qa1680.html
From that they summised that it is not necessary for me to use the same bundle seed ID. I will test this and let you know before I mark this as answered.
你不能这样做。种子实际上是包 ID 的一部分。 DFG5TY7E3.com.domain.appName 是与 HGERF562D.com.domain.appName 完全不同的捆绑包。
You can't do this. The seed is actually part of the bundle ID. DFG5TY7E3.com.domain.appName is a totally different bundle than HGERF562D.com.domain.appName.
那么,我可以更改 App Store 应用程序的捆绑种子 ID 吗?
So, can I change the bundle seed id for an App Store app?