问题描述
我的应用程序已经批准了一段时间并使用了*配置文件,所以我创建了类似于:
I've got my app approved a while ago and used the * provisioning profile so I created somehting like:
com.mydomain.MyApp
com.mydomain.MyApp
但现在我有必要添加推送通知,我不能因为我使用的是*配置文件,它需要有自己的应用程序ID和配置文件。
but now I have the necessity of adding push notifications and I can't due I am using the * provisioning profile and it needs to have its own app ID and profile.
如何在不破坏任何内容的情况下实现应用更新
How should I proceed in order to achieve an app update without breaking anything
推荐答案
应用程序的包标识符在更新之间必须始终保持相同,但AppID实际上可能不同。所以你需要做的就是创建一个新的AppID,它使用与原始应用程序相同的包标识符而不是通配符。
The bundle identifier for an app must always remain the same between updates, but the AppID can actually be different. So all you need to do is create a new AppID that used the same bundle identifier as the original app instead of a wild card.
使用通配符的应用程序仍需要普通包标识符。通配符AppID允许您使用任何您喜欢的包标识符,但它仍然需要一个。
Apps that use a wildcard still need a normal bundle identifier. The wildcard AppID lets you use any bundle identifier you like, but it still needs one.
但是, 可用。
However, an archive is available.
这篇关于我的应用程序获得批准后可以更改Bundle Identifier吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!