I'm new in Gradlew and I have a classes project which I want to import in other Gradle project.
I saw examples with say that first I need create a file settings.gradle where I put for instance
include "projectA"
Then in my build.gradle projectB I put
...
dependencies {
compile project(":projectA")
...
}
However It did not work
Is there a way to use classes from others projects?