I'm starting to use dynamic feature module and I have some doubts about how I shared information between modules
For example:
Login Module
- Make a call to the server and get a token to make the other requests
- Get a user session
Movies Module
- Make a request to the server but needs the token that was obtained in the login module
Is there any way that the app project knows dynamic feature module, because dependency realization is inverse
Login Module <-- app
Movies Module <-- app
Through this dependency relationship I could not call a login module class from the movie module
Thank you for your answers.