Skip to content

Instantly share code, notes, and snippets.

@joeytsai
Last active May 27, 2017 08:47
Show Gist options
  • Select an option

  • Save joeytsai/5e60a1e494582e6cce72d313c95bc2ad to your computer and use it in GitHub Desktop.

Select an option

Save joeytsai/5e60a1e494582e6cce72d313c95bc2ad to your computer and use it in GitHub Desktop.
Gradle settings
rootProject.name = 'my-app'
if (file("../my-utils").exists()) {
includeBuild "../my-utils"
}
file('modules').listFiles().findAll { it.directory }.each { File moduleBuild ->
includeBuild moduleBuild
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment