Android端钱多多随手记项目

build.gradle 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. repositories {
  4. jcenter()
  5. }
  6. dependencies {
  7. classpath 'com.android.tools.build:gradle:2.3.3'
  8. // NOTE: Do not place your application dependencies here; they belong
  9. // in the individual module build.gradle files
  10. }
  11. }
  12. allprojects {
  13. repositories {
  14. jcenter()
  15. maven { url "https://jitpack.io" }
  16. }
  17. }
  18. task clean(type: Delete) {
  19. delete rootProject.buildDir
  20. }
  21. ext{
  22. versionCode = 1
  23. versionName = "1.0"
  24. minSdkVersion = 18
  25. targetSdkVersion = 22
  26. compileSdkVersion = 26
  27. buildToolsVersion = "26.0.2"
  28. geniusVersion = '2.0.0'
  29. androidSupportVersion = "25.1.1"
  30. rxjavaVersion = '2.0.6'
  31. rxandroidVersion = '2.0.1'
  32. // sqlbriteVersion = '1.1.1'
  33. leakcanaryVersion = '1.5'
  34. // daggerVersion = '2.9'
  35. retrofitVersion = '2.2.0'
  36. glideVersion = '3.7.0'
  37. circleimageviewVersion = '2.1.0'
  38. androidpickerVersion = '1.0.1'
  39. logging_interceptorVersion = '3.6.0'
  40. }