BobStore/build.gradle
Daniel Martí 999fa6eb21 Add checkstyle with a small config
It doesn't include all of the Android style checks as found in Android Studio,
but it's a start.

Bump Gradle to 2.7 because the checkstyle plugin in earlier versions is just
not good enough.
2015-10-08 17:26:27 +02:00

14 lines
251 B
Groovy

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.1'
classpath files('libs/gradle-witness.jar')
}
}
task wrapper(type: Wrapper) {
gradleVersion = '2.7'
}