I am going to convert my Android projects from Ant to Gradle.
My Eclipse workspace is very simple:
Workspace
MyApp
MyApp-AndroidLibrary
You are asking several different questions. Here are some hints:
':MyApp-AndroidLibrary'
is a logical project path, which gets mapped to a physical path based on information provided in settings.gradle
.settings.gradle
. No need to move directories around, unless you want to.For more information, check out the Gradle User Guide, especially the chapter on multi-project builds.