ios6 - Xcode skipping Starting Number in Build Identifier -
ios6 - Xcode skipping Starting Number in Build Identifier -
i developing ios app name 101brainexercises. product name in project build settings 101brainexercises. buildidentifier name com.neurotrain.-01brainexercises.
if give product name brainexercises101 works fine i.e., com.neurotrain.brainexercises101.
am using xcode 4.5.2 , ios6 sdk help appreciated
-- thanks.
the project name restricted rfc 1035 (domain names - implementation , specification), specifically:
<domain> ::= <subdomain> | " " <subdomain> ::= <label> | <subdomain> "." <label> <label> ::= <letter> [ [ <ldh-str> ] <let-dig> ] <ldh-str> ::= <let-dig-hyp> | <let-dig-hyp> <ldh-str> <let-dig-hyp> ::= <let-dig> | "-" <let-dig> ::= <letter> | <digit> <letter> ::= 1 of 52 alphabetic characters through z in upper case , through z in lower case <digit> ::= 1 of 10 digits 0 through 9
in other words "label" part must start letter.
xcode ios6
Comments
Post a Comment