Regarding bundle Identifier.

Is there any specific character length that we need to implement as a bundle ID?

In my recent project, I've been implementing a specific bundle identifier, but it doesn't support all features. In addition to this, we try another bundle identifier, they support all functionality.

Replies

Is there any specific character length that we need to implement as a bundle ID?

The rules for bundle identifiers are documented here. AFAIK there are no length constraints but you should stick to reasonable values. I recommend DNS rules, that is:

  • No label longer than 63 bytes

  • Total length not greater than 255 bytes

it doesn't support all features.

What do you mean by this?

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"