config.gradle 4.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. ext {
  2. version = [
  3. applicationId: "com.hw.great",
  4. versionCode : 1,
  5. versionName : "1.0.1"
  6. ]
  7. android = [
  8. compileSdkVersion: 29,
  9. buildToolsVersion: "30.0.0",
  10. minSdkVersion : 21,
  11. targetSdkVersion : 29,
  12. ]
  13. defaultConfig = [
  14. ]
  15. release = [
  16. "apiHost" : '""',
  17. "apiName" : '""',
  18. "fileApiHost" : '""',
  19. "fileApiName" : '""',
  20. // 高德地图
  21. "AMAP_API_KEY" : "565ad55bec6d286e33a95a9ff1911b55",
  22. ]
  23. //里面的key值有问题
  24. debug = [
  25. "apiHost" : '"https://greatadmin.dev.gztjy.top"',
  26. "apiName" : '"serviceapi"',
  27. "fileApiHost" : '"https://fileupload.hw.hongweisoft.com"',
  28. "fileApiName" : '""',
  29. // 高德地图
  30. "AMAP_API_KEY" : "565ad55bec6d286e33a95a9ff1911b55",
  31. ]
  32. dependencies = [
  33. "recyclerview" : 'androidx.recyclerview:recyclerview:1.0.0',
  34. "fastJson" : "com.alibaba:fastjson:1.2.8",
  35. "okhttp3" : "com.squareup.okhttp3:okhttp:3.10.0",
  36. "retrofit2" : "com.squareup.retrofit2:retrofit:2.2.0",
  37. "retrofit2:converter-scalars" : "com.squareup.retrofit2:converter-scalars:2.2.0",
  38. "retrofit2:converter-gson" : "com.squareup.retrofit2:converter-gson:2.2.0",
  39. "retrofit2:adapter-rxjava2" : "com.squareup.retrofit2:adapter-rxjava2:2.2.0",
  40. "rxjava2" : "io.reactivex.rxjava2:rxjava:2.0.6",
  41. "rxandroid" : "io.reactivex.rxjava2:rxandroid:2.0.1",
  42. "utilcode" : "com.blankj:utilcode:1.30.5",
  43. "BaseRecyclerViewAdapterHelper": "com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.34",
  44. "butterknife" : "com.jakewharton:butterknife:8.7.0",
  45. "butterknife-compiler" : "com.jakewharton:butterknife-compiler:8.7.0",
  46. "YzsBaseActivity" : "com.github.yaozs:YzsBaseActivity:0.5.2",
  47. "glide" : "com.github.bumptech.glide:glide:4.7.1",
  48. "glide:compiler" : "com.github.bumptech.glide:compiler:4.7.1",
  49. "glide:okhttp3-integration" : "com.github.bumptech.glide:okhttp3-integration:4.7.1",
  50. "leakcanary-debug" : "com.squareup.leakcanary:leakcanary-android:1.5.4",
  51. "leakcanary-release" : "com.squareup.leakcanary:leakcanary-android-no-op:1.5.4",
  52. "zxing-library" : "cn.yipianfengye.android:zxing-library:2.2",
  53. "easypermissions" : "pub.devrel:easypermissions:1.2.0",
  54. "switchbutton" : "com.kyleduo.switchbutton:library:2.0.0",
  55. "nice-spinner" : "com.github.arcadefire:nice-spinner:1.3.4",
  56. "gson" : "com.google.code.gson:gson:2.8.5",
  57. "tablayout" : "com.flyco.tablayout:FlycoTabLayout_Lib:2.1.2@aar",
  58. "fragmentation" : "me.yokeyword:fragmentationx:1.0.1",
  59. "logger" : "com.orhanobut:logger:2.1.1",
  60. "barlibrary" : "com.gyf.barlibrary:barlibrary:2.3.0",
  61. "wechat-sdk" : "com.tencent.mm.opensdk:wechat-sdk-android-with-mta:+",
  62. "circleimageview" : "de.hdodenhof:circleimageview:2.2.0",
  63. "multidex" : "com.android.support:multidex:1.0.3",
  64. "SwipeDelMenuLayout" : "com.github.mcxtzhang:SwipeDelMenuLayout:V1.3.0",
  65. "cardview" : "com.android.support:cardview-v7:28.+",
  66. "jpush" : "cn.jiguang.sdk:jpush:3.1.5",
  67. "jcore" : "cn.jiguang.sdk:jcore:1.2.3",
  68. "recyclerview-divider" : "com.yqritc:recyclerview-flexibledivider:1.4.0",
  69. "lottie" : "com.airbnb.android:lottie:1.5.3",
  70. "bugly" : "com.tencent.bugly:crashreport:latest.release",
  71. "youth_banner" : "com.youth.banner:banner:1.4.10",
  72. "takephoto" : "com.jph.takephoto:takephoto_library:4.0.3",
  73. "photo" : "com.bm.photoview:library:1.4.1",
  74. ]
  75. }