chiark / gitweb /
Merge branch 'master' into 'master'
authorDaniel Martí <mvdan@mvdan.cc>
Mon, 21 Sep 2015 17:06:38 +0000 (17:06 +0000)
committerDaniel Martí <mvdan@mvdan.cc>
Mon, 21 Sep 2015 17:06:38 +0000 (17:06 +0000)
Added support for gradle flavor specific dependencies in usual suspects check

When you have flavor specific dependencies in your project, you specify them in the build.gradle file with a prefixed *compile* command:

```
compile 'normal dependency'
myflavorCompile 'only for myflavor'
```

The usual suspects check just searches for some often used library names in the whole build.gradle file. I added another condition, so dependencies for not build flavors are not checked.

See merge request !77


Trivial merge