Android端钱多多随手记项目

build.gradle 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. repositories {
  4. jcenter()
  5. google()
  6. }
  7. dependencies {
  8. classpath 'com.android.tools.build:gradle:2.3.3'
  9. classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2'
  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. jcenter()
  17. maven { url "https://jitpack.io" }
  18. google()
  19. }
  20. }
  21. task clean(type: Delete) {
  22. delete rootProject.buildDir
  23. }
  24. ext{
  25. versionCode = 11
  26. versionName = "1.4.4"
  27. minSdkVersion = 18
  28. targetSdkVersion = 22
  29. compileSdkVersion = 26
  30. buildToolsVersion = "26.0.2"
  31. geniusVersion = '2.0.0'
  32. androidSupportVersion = "25.1.1"
  33. rxjavaVersion = '2.0.6'
  34. rxandroidVersion = '2.0.1'
  35. // sqlbriteVersion = '1.1.1'
  36. leakcanaryVersion = '1.5'
  37. // daggerVersion = '2.9'
  38. retrofitVersion = '2.2.0'
  39. glideVersion = '3.7.0'
  40. circleimageviewVersion = '2.1.0'
  41. androidpickerVersion = '1.0.1'
  42. logging_interceptorVersion = '3.6.0'
  43. }