I'm using maven and i'd like to move to gradle.
The problem is that i have module "lib" and module "app", app uses lib. I have to create settings.gradle
file in 'app' folder with include :lib
content to make 'app' use 'lib'. I want them to be in the same folder 'project' like this:
project
|-lib
|-app
instead of:
project
|-app
|-lib
I've tried using include ./lib
but no luck.
How can i do it?