How can I get module (sub-module / imported as a module dependency) context with module package name ?
I need a context in submodule with their own packagename (module's package name) to use.
Example : Main App (com.main.app) has a module dependency called SubApp (com.sub.app). I need to use context of com.sub.app in module but when i try to access context it always gives me with com.main.app because it is initialized in the AppController.
Is there any way to get module's context ?