package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "Sys-Plugin",
  3. "id": "Sys-Plugin",
  4. "version": "1.0.0",
  5. "description": "系统硬件",
  6. "_dp_type": "nativeplugin",
  7. "_dp_nativeplugin": {
  8. "android": {
  9. "plugins": [
  10. {
  11. "type": "module",
  12. "name": "sysPlugin",
  13. "class": "com.example.sysplugin.system"
  14. },
  15. {
  16. "type": "module",
  17. "name": "SerialPortModule",
  18. "class": "com.example.sysplugin.SerialPortModule"
  19. },
  20. {
  21. "type": "module",
  22. "name": "yxPlugin",
  23. "class": "com.example.sysplugin.YxPluginModule"
  24. },
  25. {
  26. "type": "module",
  27. "name": "phPlugin",
  28. "class": "com.example.sysplugin.PhPluginModule"
  29. },
  30. {
  31. "type": "module",
  32. "name": "mqttPlugin",
  33. "class": "com.example.sysplugin.mqtt"
  34. }
  35. ],
  36. "integrateType": "aar",
  37. "dependencies": [],
  38. "compileOptions": {
  39. "sourceCompatibility": "1.8",
  40. "targetCompatibility": "1.8"
  41. },
  42. "abis": [
  43. "armeabi-v7a",
  44. "x86"
  45. ],
  46. "minSdkVersion": "21",
  47. "permissions": []
  48. }
  49. }
  50. }