manifest.json 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. {
  2. "name" : "",
  3. "appid" : "__UNI__9F2011E",
  4. "description" : "",
  5. "versionName" : "1.0.0",
  6. "versionCode" : "100",
  7. "transformPx" : false,
  8. /* 5+App特有相关 */
  9. "app-plus" : {
  10. "usingComponents" : true,
  11. "nvueCompiler" : "uni-app",
  12. "compilerVersion" : 3,
  13. "splashscreen" : {
  14. "alwaysShowBeforeRender" : true,
  15. "waiting" : true,
  16. "autoclose" : true,
  17. "delay" : 0
  18. },
  19. /* 模块配置 */
  20. "modules" : {
  21. "Push" : {}
  22. },
  23. /* 应用发布信息 */
  24. "distribute" : {
  25. /* android打包配置 */
  26. "android" : {
  27. "permissions" : [
  28. "<uses-permission android:name=\"android.permission.CALL_PHONE\"/>",
  29. "<uses-permission android:name=\"android.permission.CAMERA\"/>"
  30. ],
  31. "autoSdkPermissions" : false,
  32. "abiFilters" : [ "armeabi-v7a", "arm64-v8a" ]
  33. },
  34. /* ios打包配置 */
  35. "ios" : {},
  36. /* SDK配置 */
  37. "sdkConfigs" : {
  38. "ad" : {},
  39. "push" : {
  40. "unipush" : {}
  41. }
  42. },
  43. "splashscreen" : {
  44. "androidStyle" : "common"
  45. }
  46. }
  47. },
  48. /* 快应用特有相关 */
  49. "quickapp" : {},
  50. /* 小程序特有相关 */
  51. "mp-weixin" : {
  52. "appid" : "",
  53. "setting" : {
  54. "urlCheck" : false
  55. },
  56. "usingComponents" : true
  57. },
  58. "mp-alipay" : {
  59. "usingComponents" : true
  60. },
  61. "mp-baidu" : {
  62. "usingComponents" : true
  63. },
  64. "mp-toutiao" : {
  65. "usingComponents" : true
  66. },
  67. "uniStatistics" : {
  68. "enable" : false
  69. },
  70. "h5" : {
  71. "title" : "",
  72. "domain" : "",
  73. "router" : {
  74. // 正常打包目录
  75. "base" : "/app/"
  76. },
  77. // 宜昌打包目录
  78. // "base" : "/dstechbh/app/"
  79. "optimization" : {
  80. "treeShaking" : {
  81. "enable" : true
  82. }
  83. },
  84. "devServer" : {
  85. "disableHostCheck" : true,
  86. "proxy" : {
  87. "/service" : {
  88. "target" : "http://192.168.3.108", //请求的目标域名
  89. // "target" : "http://192.168.4.163", //宋程玉本地
  90. "changeOrigin" : true, //是否跨域
  91. "secure" : false
  92. }
  93. },
  94. "port" : 8081 //当前项目的端口号
  95. }
  96. }
  97. }