cb5cf26d108c3304d326146721187a4e1aa469b1.svn-base 967 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. repositories {
  4. google()
  5. jcenter()
  6. }
  7. dependencies {
  8. classpath 'com.android.tools.build:gradle:3.4.0'
  9. classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2' // add plugin
  10. // NOTE: Do not place your application dependencies here; they belong
  11. // in the individual module build.gradle files
  12. }
  13. }
  14. allprojects {
  15. repositories {
  16. google()
  17. jcenter()
  18. mavenCentral()
  19. maven {url "https://jitpack.io"}
  20. maven {url 'https://maven.google.com'}
  21. }
  22. }
  23. task clean(type: Delete) {
  24. delete rootProject.buildDir
  25. }
  26. ext {
  27. // Sdk and tools
  28. targetSdkVersion = 28
  29. compileSdkVersion = 28
  30. buildToolsVersion = '28.0.3'
  31. // Google Support
  32. supportLibraryVersion = '28.0.0'
  33. constraintLayoutVersion = '1.1.3'
  34. junitVersion = '4.12'
  35. }