Suppose that I have an app called A.
Bundle Identifiers must be unique across all Mac and iOS apps. This means that if I have the app A on the iOS App Store with the Bundle ID com.mycompany.a
, I cannot create an app on the Mac App Store with the same Bundle ID com.mycompany.a
.
Ok, said that, what is the best way to distinguish the Bundle IDs?
Some examples I can think of:
com.mycompany.a_ios
,com.mycompany.a_mac
com.mycompany.ios.a
,com.mycompany.mac.a
Are there others that come to mind? Which you used?