I have an Android Studio project that contains several sub-projects (aka: modules). I would like to build some of these sub-projects from the command line.
I read on the Android dev guide that you can build your project by simply running
gradlew.bat assembleDebug from the command line, however this always builds the entire project (all the modules) I just want to assemble a single module, how do I do that?