xxxxxxxxxx
In Android Studio 1.0 - 1.1b4, I found this to be the easiest way to remove a module:
Open settings.gradle found under Gradle Scripts
Delete module's name from the include statement
Sync Project with Gradle Files
Optionally, delete it manually from the project folder
Example
Old:
include ':app', ':greendao'
New:
include ':app'