Make sure of the following:
In settings.gradle, you should have: include ':x', ':y'.
In x/build.gradle, you should add y as a dependency:
dependencies {
compile project(':y')
// other dependencies
}
Make sure of the following:
In settings.gradle, you should have: include ':x', ':y'.
In x/build.gradle, you should add y as a dependency:
dependencies {
compile project(':y')
// other dependencies
}