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.

39 lines
626 B

6 years ago
6 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. }
  10. }
  11. allprojects {
  12. repositories {
  13. google()
  14. jcenter()
  15. }
  16. }
  17. checkstyle {
  18. toolVersion '8.13'
  19. }
  20. ext {
  21. ci = project.hasProperty("ci")
  22. }
  23. task clean(type: Delete) {
  24. delete rootProject.buildDir
  25. }
  26. task checkstyle (type: Checkstyle) {
  27. configFile rootProject.file("checkstyle.xml")
  28. source "app/src/main/java"
  29. ignoreFailures false
  30. showViolations true
  31. include "**/*.java"
  32. classpath = files()
  33. }