package.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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.serialplugin.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. "type": "module",
  37. "name": "SilentInstall",
  38. "class": "com.example.sysplugin.SilentInstallModule"
  39. },
  40. {
  41. "type": "module",
  42. "name": "AppGuard",
  43. "class": "com.example.appguardplugin.AppGuardModule"
  44. },
  45. {
  46. "type": "module",
  47. "name": "autoStart",
  48. "class": "com.example.autostart.BootCompletedReceiver"
  49. }
  50. ],
  51. "integrateType": "aar",
  52. "dependencies": [
  53. "org.eclipse.paho:org.eclipse.paho.client.mqttv3:1.2.5"
  54. ],
  55. "compileOptions": {
  56. "sourceCompatibility": "1.8",
  57. "targetCompatibility": "1.8"
  58. },
  59. "abis": [
  60. "armeabi-v7a",
  61. "arm64-v8a"
  62. ],
  63. "minSdkVersion": "21",
  64. "permissions": []
  65. }
  66. }
  67. }