Skip to content

Instantly share code, notes, and snippets.

@bazted
Created January 16, 2017 08:29
Show Gist options
  • Save bazted/550b9206ec5dc1e0450083959a43cab2 to your computer and use it in GitHub Desktop.
Save bazted/550b9206ec5dc1e0450083959a43cab2 to your computer and use it in GitHub Desktop.
List all gradle sourceSets and their files
//add this in the end of your build.gradle
sourceSets.each {
println(it)
it.allSource.each {
println(it)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment