How to completely remove the package identifier in iOS development?

How can I reuse the package identifier that I created for the application identifier? I even delete the associated application identifier, but the package identifier is not yet available. Can it say that the package identifier cannot be deleted completely after creation?

+4
source share
1 answer

The bundle identifier cannot be reused as accurate. For example, com.abc.xxx can only be used once. If you created this application identifier from one account, you cannot create the same application identifier from another account. However, you can still create a new one, for example com.abc.xxx1. In app id

must be at least 1 character.

IF YOU WANT TO REMOVE AN IDENTIFIER IDENTIFIER FOLLOWING THE STEPS:

  • Open developer.apple.com and enter your credentials.
  • Click on app IDs.
  • Now click on the identifier of the application you want to remove.
  • Click "Edit" at the bottom of the application ID information.
  • Now, at the bottom of the page, you can find the "Delete" button to remove the application identifier.
+3

Source: https://habr.com/ru/post/1611255/


All Articles