I'm trying to set up a rather extensive set of Flex library projects so that I can build all functionality as modular components. Each individual library can be included in a test project at any given time for testing and development purposes. When the whole app needs to be built, another Flex project (application) which imports all the libraries will be built. Something like this:
- ComponentTest (application)
- UI (lib) (I happen to be testing this one right now)
- App (application)
- UI (lib)
- Networking (lib)
- Drawing (lib)
- Common (lib)
In the App project, I initialize my Parsley context using a bare-bones config file, so something like this in the main MXML file:
<fx:Declarations>
<parsley:ContextBuilder config="{ParsleyConfig}" />
</fx:Declarations>
And ParsleyConfig is simply:
<?xml version="1.0" encoding="utf-8"?>
<Objects xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns="http://www.spicefactory.org/parsley">
<fx:Declarations>
</fx:Declarations>
</Objects>
As you can see, there's nothing to it, because I'm not using most of the advanced features at this time (just messaging and object lifecycle).
What I'd like to do is include the Parsley and SpiceLib libraries only once, in Common, and have them available in all projects (by compiling it first and including it in all projects, including the other libs). Unfortunately, this doesn't work for some reason. I keep getting errors like this in my other libraries (like Draw):
Could not resolve <parsley:Configure> to a component implementation.
And for some reason, I have to include the Parsley and SpiceLib libraries again in the App project, otherwise it doesn't recognize basic things like ContextBuilder.
I'm not sure what I'm doing wrong. I've included the correct header everywhere I wish to use Parsley:
xmlns:parsley="http://www.spicefactory.org/parsley"
Surely I don't need to include Parsley SWCs in every single library if they've already imported another library that has it, right?
I'm new to building multi-library projects and Parsley. I'm using Flash Builder 4.0 with Flex 4.5.1. Parsley version 2.4.1. Also note that my project structure looks like com.company.[etc] for all library projects.
Edit I've found that I don't have to include them if I use a compiler argument like this:
-include-libraries lib/parsley-flex4-2.4.1.swc lib/spicelib-flex-2.4.0.swc
However, I'm starting to wonder if this is necessary. The more I've read about external library inclusion (versus merge into code), it seems that simply including the different libraries many times is ok, just allowing the compiler and runtime figure out if it needs the library again. Does that sound right? What other considerations are involved.