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

5 years ago
5 years ago
  1. apply plugin: 'checkstyle'
  2. buildscript {
  3. repositories {
  4. google()
  5. jcenter()
  6. }
  7. dependencies {
  8. classpath 'com.android.tools.build:gradle:3.2.1'
  9. classpath 'com.github.marcpoppleton:git-changelog:0.1.3'
  10. }
  11. }
  12. allprojects {
  13. repositories {
  14. google()
  15. jcenter()
  16. }
  17. }
  18. checkstyle {
  19. toolVersion '8.13'
  20. }
  21. ext {
  22. ci = project.hasProperty("ci")
  23. }
  24. task clean(type: Delete) {
  25. delete rootProject.buildDir
  26. }
  27. task checkstyle (type: Checkstyle) {
  28. configFile rootProject.file("checkstyle.xml")
  29. source "app/src/main/java"
  30. ignoreFailures false
  31. showViolations true
  32. include "**/*.java"
  33. classpath = files()
  34. }