3
0

conf.gradle 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. ext {
  2. android = [
  3. compileSdkVersion: 23,
  4. buildToolsVersion: "23.0.2",
  5. minSdkVersion : 15,
  6. targetSdkVersion : 23,
  7. versionCode : 1,
  8. versionName : '1.0.0',
  9. VSupportSdk : '23.3.0',
  10. VRetrofitSdk : "2.1.0",
  11. VOkhttp : "3.4.2",
  12. VRxlifecycle : "1.0"
  13. ]
  14. dependencies = [
  15. "appcompat-v7" : "com.android.support:appcompat-v7:${android["VSupportSdk"]}",
  16. "support-v4" : "com.android.support:support-v4:${android["VSupportSdk"]}",
  17. "design" : "com.android.support:design:${android["VSupportSdk"]}",
  18. "annotations" : "com.android.support:support-annotations:${android["VSupportSdk"]}",
  19. "recyclerview-v7" : "com.android.support:recyclerview-v7:${android["VSupportSdk"]}",
  20. "butterknife" : "com.jakewharton:butterknife:8.4.0",
  21. "butterknife-apt" : "com.jakewharton:butterknife-compiler:8.4.0",
  22. "eventbus" : "org.greenrobot:eventbus:3.0.0",
  23. "glide" : "com.github.bumptech.glide:glide:3.7.0",
  24. "picasso" : "com.squareup.picasso:picasso:2.5.2",
  25. "xrecyclerview" : "com.github.limedroid:ARecyclerView:v1.1.5",
  26. "avi-loading" : "com.wang.avi:library:1.0.2",
  27. "gson" : "com.google.code.gson:gson:2.6.2",
  28. "rxandroid" : "io.reactivex:rxandroid:1.2.1",
  29. "rxjava" : "io.reactivex:rxjava:1.1.6",
  30. "retrofit" : "com.squareup.retrofit2:retrofit:${android["VRetrofitSdk"]}",
  31. "retrofit-converter-gson" : "com.squareup.retrofit2:converter-gson:${android["VRetrofitSdk"]}",
  32. "retrofit-adapter-rxjava" : "com.squareup.retrofit2:adapter-rxjava:${android["VRetrofitSdk"]}",
  33. "okhttp3-logging-interceptor": "com.squareup.okhttp3:logging-interceptor:${android["VOkhttp"]}",
  34. "okhttp3" : "com.squareup.okhttp3:okhttp:${android["VOkhttp"]}",
  35. "rxlifecycle" : "com.trello:rxlifecycle:${android["VRxlifecycle"]}",
  36. "rxlifecycle-android" : "com.trello:rxlifecycle-android:${android["VRxlifecycle"]}",
  37. "rxlifecycle-components" : "com.trello:rxlifecycle-components:${android["VRxlifecycle"]}",
  38. "rxpermissions" : "com.tbruyelle.rxpermissions:rxpermissions:0.9.1@aar",
  39. "canary-debug" : "com.squareup.leakcanary:leakcanary-android:1.4-beta2",
  40. "canary-release" : "com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta2",
  41. ]
  42. }