views:

58

answers:

1

Just wondering how you can go about changing a flex app's application identifier string?

I know its located on line 16 of the xml file but every time I change it, an error occurs when I export the release build.

Just wondering how I go about doing this.

A: 

There are some requirements regarding the application id. From the docs:

An identifier string unique to the application, known as the application ID. The attribute value is restricted to the following characters:

  • 0-9
  • a-z
  • A-Z
  • . (dot)
  • - (hyphen)

The value must contain between 1 to 212 characters.

If your new value follows these requirements and you still get an error, post a specific question about the error you're getting.

Sam
Thanks, I must have been adding spaces or something.
Adam