Is -keep-as3-metadata += Autowired really necessary?
I added "-keep-as3-metadata += Autowired" to my FB3 compiler args (as instructed in the 0.8 docs) but I didn't added it to my CI server's compile task. Guess what, the app built by the CI server appears to work fine without it.
Is "-keep-as3-metadata += Autowired" really required?
flex4/flex3 it depends...
I seem to remember that if you're using the Flex 4 compiler it isn't necessary because by default it keeps all metadata. (This is unconfirmed though so far).
With Flex3 though it is definitely required.
I'm not surprised your CI server compiles without trouble since the metadata is only used at runtime, therefore compilation will run faultlessly.
I'm pretty sure that if you'd take the .swf that you're CI server generates and ran your application that the injections wouldn't take place since the metadata is missing.
Hope that clears things up,
cheers,
Roland
P.S. If you use your CI server to also run unit tests, you can check for this behavior by adding tests that make use of the metadata, that way you'll be sure that things are in working order.
I did run the SWF build by the CI server and it worked!
I did run the SWF build by the CI server and it worked! That's why I did the original post. The CI server's using the 3.3 compiler so perhaps the "keep all metadata by default" compiler improvement you mention was added for 3.3?