贷款超市新仓库

build.gradle 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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 { url 'https://maven.fabric.io/public' }
  6. }
  7. dependencies {
  8. classpath 'com.android.tools.build:gradle:2.3.3'
  9. // classpath 'io.fabric.tools:gradle:1.+'
  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. // maven { url 'https://maven.fabric.io/public' }
  19. }
  20. }
  21. task clean(type: Delete) {
  22. delete rootProject.buildDir
  23. }
  24. ext{
  25. // 版本号相关
  26. versionCode = 1;
  27. versionName = '1.0.0'
  28. // 相关依赖库版本
  29. supportVersion = '25.+'
  30. butterknifeVersion = '8.5.1'
  31. geniusVersion = '2.0.0'
  32. glideVersion = '3.7.0'
  33. circleimageviewVersion = '2.1.0'
  34. easyPMVersion = "0.3.0"
  35. logging_interceptorVersion = '3.6.0'
  36. gsonVersion = '2.8.0'
  37. retrofitVersion = '2.1.0'
  38. getuiVersion = '2.9.3.0'
  39. dbflowVersion = "4.0.0-beta7"
  40. airpanelVersion = "1.1.0"
  41. lameVersion = "1.0.0"
  42. }