I have 1 app with 2 module
MyApp -> Framework -> Module
MyApp
implementation project(':Framework')
Framework
implementation project(':MyModule')
But I can't use MyModule's files in MyApp. IDE show me "cannot access" error where I want to extend the class witch extend a MyModule class. And it not founds the classes from MyModule Anyone have idea about this? What's wrong?
Use api instead of implementation (in the middle module) if you want to provide access to the modules which are using it.
In your case, in the module Framework, use:
api project(':MyModule')
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With