Reputation: 431
I have two developer accounts. Xcode
automatically created a wild card
provisional profile
with bundle id "com.xyz.abc
" in one of developer account. Now, Is it possible to create/use bundle id "com.xyz.abc
" in second developer account by deleting the App id created by Xcode in first developer account.
Upvotes: 1
Views: 3696
Reputation: 1298
If you have not uploaded a build and you created the bundle id from xcode without a payed developer account. You can call apple to delete the bundle id.
If you have already upload a build. Deleting is not possible.
If you have an payed apple dev account and you have not uploaded an build. You can delete it in your dev account.
Upvotes: 1
Reputation: 61784
Bundle id can be deleted if you haven't upload any build to iTunes Connect using that bundle id.
But if you did it, the only way to use bundle id in other account is to transfer the app from one account to another.
Transferring and deleting apps
Upvotes: 0
Reputation: 431
Yes, It does register the same bundle id after deleting it from other developer account. I tried registering a same bundle id in another account after deleting it from previously registered developer account.
Upvotes: 3
Reputation:
Important: If you delete your app, you can’t restore it. The SKU or app name can’t be reused in the same organization. If you’ve uploaded a build, your bundle ID can’t be reused.
Upvotes: 1
Reputation: 1198
BundleID
is unique ID by which application can identified. You can not use same bundle id
. One bundle id can be used only once.
Upvotes: 0