I created one library project with two modules. I added the 2nd module in the dependencies of the first module like this:
implementation project(":module2")
I am able to generate the AAR file after this. But I'm getting
java.lang.NoClassDefFoundError
while running the client app.
Kindly help me find out what I am missing here.