Flex library class definitions in main application domain
Hello,
While migrating a flex web application initially developed with flash builder to a desktop application with Intellij Idea, I'm facing an issue regarding inclusion of class definitions from a library in the main application domain.
A model of the application get a listing via ApplicationDomain.currentDomain.getQualifiedDefinitionNames() of the class definitions contained in a Runtime Shared Library (Flash builder RSL).
This process doesn't work anymore on the desktop application developed with Intellij : Only the class definitions that are explicitely declared in the main application via an import directive exists in the ApplicationDomain (this library is included as a build configuration to the appliaction module with linkage set to "merged").
Is someone has an idea of the cause of this problem ?
Thank you for the help.
Vincent.
Please sign in to leave a comment.
Just found the answer, maybe it can help someone else : linkage type must be
set to "include" in the Dependencies tab of the Intellij module settings.
Vincent.