ios - wildcard bundle ID error Xcode -
ios - wildcard bundle ID error Xcode -
i have wildcard bundle id
com.chatat*
which setting bundle identifier project in xcode. however, getting error
(null): error: cfbundleidentifier 'com.chatat*' contains illegal character '*'
after looking things on apple website states
you need replace asterisk appropriate string using reverse-dns format
and not sure meant 'reverse-dns' format. able help this? in advance
reverse dns format domain name, backwards. example, com.stackoverflow
. in order avoid name collisions, bundle ids have format reverse dns name + name of application, reverse dns name reversed form of domain name under control. example, bundle id "myapp" might com.example.myapp
.
ios xcode bundle-identifier
Comments
Post a Comment