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.

41 lines
738 B

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