So, I am trying to publish my Xamarin.Ios app to the app store (really test flight but I have to get an ipa) I'm following along the Microsoft documentation and trying to register a new identifier (on developer.apple), however, when I insert my Bundle ID (from info.plist) the web service marks it as "invalid identifier". I've been looking to see if I glanced over a pre-requisite in the documentation but I haven't noticed anything. Any help with this issue would be greatly appreciated. Thank you for your time.
Register a new Identifier
The most common cause of this is using invalid characters in your bundle ID. You must stick with ASCII letters, numbers, dot (.), and dash (-).
Share and Enjoy
—
Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"
Share and Enjoy
—
Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"
Hello,
Thank you for your help. I believe that is the answer I'm looking for as getting rid of my underscore ostensibly solves the issue, however, I am new to programming and also not afraid to look ****** so I have a follow up question: may I have an example? For instance ascii code of _ is 95 so if I have blah_app it obviously wouldn't just change to blah95app, would it?
Thank you for your help. I believe that is the answer I'm looking for as getting rid of my underscore ostensibly solves the issue, however, I am new to programming and also not afraid to look ****** so I have a follow up question: may I have an example? For instance ascii code of _ is 95 so if I have blah_app it obviously wouldn't just change to blah95app, would it?
Bundle IDs have no special scheme for unsupported characters. You can make one up if you like, but it’s not supported by Apple’s platforms, tools, or web sites.
IMO you need to leave the whole concept of underscores behind.
Share and Enjoy
—
Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"
IMO you need to leave the whole concept of underscores behind.
Share and Enjoy
—
Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"