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)
commit6c5bbb243184aa1566e8edca5466b2c07c3ffe74
treed6be2adf7029d122d5dc58360752694696d78219
parente285a8ac313ec5f65cb1b527dc4e5190c206b085
parent450409ef14c9bffcf7829c84e57a4b12c18df511
Merge branch 'master' into 'master'

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