build.gradle 815 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. repositories {
  4. google()
  5. mavenCentral()
  6. jcenter()
  7. }
  8. dependencies {
  9. classpath 'com.android.tools.build:gradle:3.2.0'
  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. maven { url "https://jitpack.io" }
  17. google()
  18. mavenCentral()
  19. jcenter()
  20. flatDir {
  21. dirs 'libs', '../baselibrary/libs'
  22. }
  23. }
  24. }
  25. ext {
  26. compileSdkVersion = 28
  27. buildToolsVersion = "28.0.3"
  28. minSdkVersion = 19
  29. targetSdkVersion = 28
  30. }
  31. task clean(type: Delete) {
  32. delete rootProject.buildDir
  33. }