config.gradle 4.6 KB

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