Application can't use module's module

vihkat :

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?

Nabin Bhandari :

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')

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=103321&siteId=1