Android端钱多多随手记项目

build.gradle 1.2KB

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