Whenever you create a new project in Xcode, it asks for an organization identifier which should be in reverse DNS notation. If my open source project has no domain (nor website), what should I use?
I was thinking I could somehow use the GitHub URL, but that doesn't seem like it'll work. For example say my code is at https://github.com/apple/swift, then the unique organization DNS would have to be something like apple/com.github
, but apple/
is not a valid part of a domain; and thus I would be left with com.github
, which is belongs to another company.
I could theoretically use com.github.apple
but this is a made up URL, and what's to say that it won't be a valid URL for some other organization in the future?