package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "TZBank-Cashier",
  3. "id": "TZBank-Cashier",
  4. "version": "1.0.0",
  5. "author": "tzbank",
  6. "description": "台州银行收银台支付插件",
  7. "_dp_type": "nativeplugin",
  8. "_dp_nativeplugin": {
  9. "android": {
  10. "plugins": [{
  11. "type": "module",
  12. "name": "TZBank-Cashier",
  13. "class": "com.tzbank.uniplugin_cashier.PayModule"
  14. }],
  15. "integrateType": "aar"
  16. },
  17. "ios": {
  18. "plugins": [
  19. {
  20. "type": "module",
  21. "name": "TZBank-Cashier",
  22. "class": "CashierModule"
  23. }
  24. ],
  25. "integrateType": "framework",
  26. "frameworks": [
  27. "依赖的系统库(系统库有.framework和.tbd和.dylib类型),和第三方.framework动态库;(.a 库或 .framework**静态库**直接放到ios根目录即可,不需要配置)"
  28. ],
  29. "deploymentTarget": "11.0",
  30. "validArchitectures": [
  31. "arm64"
  32. ]
  33. }
  34. }
  35. }