
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.
14 lines
251 B
Groovy
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'
|
|
}
|