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. classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2'
  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. jcenter()
  16. maven { url "https://jitpack.io" }
  17. }
  18. }
  19. task clean(type: Delete) {
  20. delete rootProject.buildDir
  21. }
  22. ext{
  23. versionCode = 8
  24. versionName = "1.4.1"
  25. minSdkVersion = 18
  26. targetSdkVersion = 22
  27. compileSdkVersion = 26
  28. buildToolsVersion = "26.0.2"
  29. geniusVersion = '2.0.0'
  30. androidSupportVersion = "25.1.1"
  31. rxjavaVersion = '2.0.6'
  32. rxandroidVersion = '2.0.1'
  33. // sqlbriteVersion = '1.1.1'
  34. leakcanaryVersion = '1.5'
  35. // daggerVersion = '2.9'
  36. retrofitVersion = '2.2.0'
  37. glideVersion = '3.7.0'
  38. circleimageviewVersion = '2.1.0'
  39. androidpickerVersion = '1.0.1'
  40. logging_interceptorVersion = '3.6.0'
  41. }