vincentbrison / vb-android-app-quality

Sample android project using Gradle, with basic quality tools set up.
Apache License 2.0
811 stars 364 forks source link

Use dependsOn: assembleDebug where appropriate #10

Closed cco3 closed 9 years ago

cco3 commented 9 years ago

This change creates class files with debug symbols before running pmd and findbugs.

vincentbrison commented 9 years ago

Hi, Thanks for your PR. Findbugs actually needs class files to do its analysis, but PMD works directly with java files, so the dependson for PMD is not necessary. Could you modify your PR, and then I will merge it :) ? Thanks again.

cco3 commented 9 years ago

done

vincentbrison commented 9 years ago

Perfect !