How can I do the following in Flex 4.5 or later:
- Compile an swc library file containing packages of simple functions
- Compile an swf application referencing the swc file as RSL
- Publish the swf application
- Send the source code of the swc file to another developer
- Allow the developer to modify the code of some functions while keeping their interfaces
- Allow the developer to compile the source code into a new swc file using only compc
- Allow the developer to replace my original swc file with his new swc file, then execute my swf application having the new swc file in the same directory.
I tried the above many times, just to fail. Is there any alternative?
The only way to eliminate additional compilation against the updated libraries is re-thinking your architecture: If all the dependencies in the RSL are properly decoupled, you should not have any problems.