Automatic Android support without specifying target "src/*/java/**/*.java"

Does this support Android?


EDIT BY @nedtwigg, TOP COMMENT FOR VISIBILITY

On Android, your config file needs to look like this:

spotless {
  java {
    target "src/*/java/**/*.java"  // this line is needed
  }
}

We'd love a PR which fixes this, see this comment and this comment for what needs to be done.