liato / android-bankdroid

A swedish banking application for your Android device.
http://www.swedroid.se/forum/showthread.php?t=11108
Other
243 stars 173 forks source link

Fix "./gradlew check" task dependencies #622

Closed walles closed 8 years ago

walles commented 8 years ago

Before this change, just doing ./gradlew check would fail because FindBugs required assembleDebug to run first.

This change tells Gradle about this dependency and enables one to do ./gradlew check without doing assembleDebug first.

walles commented 8 years ago

Note that this change leaves .travis.yml untouched, because even if we can do check now without assembleDebug we still want to ensure we can actually build / assemble everything.

goober commented 8 years ago

Thanks.