9c5197963f10b716f759eca9143d16f7f7197070.svn-base 898 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. // NOTE: Do not place your application dependencies here; they belong
  10. // in the individual module build.gradle files
  11. }
  12. }
  13. allprojects {
  14. repositories {
  15. google()
  16. jcenter()
  17. mavenCentral()
  18. maven {url "https://jitpack.io"}
  19. maven {url 'https://maven.google.com'}
  20. }
  21. }
  22. task clean(type: Delete) {
  23. delete rootProject.buildDir
  24. }
  25. ext {
  26. // Sdk and tools
  27. targetSdkVersion = 28
  28. compileSdkVersion = 28
  29. buildToolsVersion = '28.0.3'
  30. // Google Support
  31. supportLibraryVersion = '28.0.0'
  32. constraintLayoutVersion = '1.1.3'
  33. junitVersion = '4.12'
  34. }