Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

40 lines
691 B

apply plugin: 'checkstyle'
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.github.marcpoppleton:git-changelog:0.1.3'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
checkstyle {
toolVersion '8.13'
}
ext {
ci = project.hasProperty("ci")
}
task clean(type: Delete) {
delete rootProject.buildDir
}
task checkstyle (type: Checkstyle) {
configFile rootProject.file("checkstyle.xml")
source "app/src/main/java"
ignoreFailures false
showViolations true
include "**/*.java"
classpath = files()
}