build.gradle 1015 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. project.ext {
  3. compileSdkVersion = 27
  4. buildToolsVersion = '29.0.3'
  5. minSdkVersion = 21
  6. targetSdkVersion = 27
  7. versionCode = 30
  8. versionName = "0.3.0"
  9. supportLibraryVersion = '27.1.1'
  10. konwidgetVersion = '0.1.0'
  11. yorozuyaVersion = '0.1.3'
  12. junitVersion = '4.12'
  13. androidTestRunnerVersion = '1.0.2'
  14. jsoupVersion = '1.11.3'
  15. }
  16. buildscript {
  17. repositories {
  18. jcenter()
  19. google()
  20. }
  21. dependencies {
  22. classpath 'com.android.tools.build:gradle:3.2.1'
  23. classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
  24. // NOTE: Do not place your application dependencies here; they belong
  25. // in the individual module build.gradle files
  26. }
  27. }
  28. allprojects {
  29. repositories {
  30. jcenter()
  31. google()
  32. maven { url "https://jitpack.io" }
  33. }
  34. }
  35. task clean(type: Delete) {
  36. delete rootProject.buildDir
  37. }