module.json5 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "module": {
  3. "name": "entry_test",
  4. "type": "feature",
  5. "description": "$string:module_test_desc",
  6. "mainElement": "TestAbility",
  7. "deviceTypes": [
  8. "default",
  9. "tablet"
  10. ],
  11. "deliveryWithInstall": true,
  12. "installationFree": false,
  13. "pages": "$profile:test_pages",
  14. "abilities": [
  15. {
  16. "name": "TestAbility",
  17. "srcEntry": "./ets/testability/TestAbility.ets",
  18. "description": "$string:TestAbility_desc",
  19. "icon": "$media:HONDAK_LOGO",
  20. "label": "$string:TestAbility_label",
  21. "exported": true,
  22. "startWindowIcon": "$media:HONDAK_LOGO",
  23. "startWindowBackground": "$color:start_window_background",
  24. "skills": [
  25. {
  26. "actions": [
  27. "action.system.home"
  28. ],
  29. "entities": [
  30. "entity.system.home"
  31. ]
  32. }
  33. ]
  34. }
  35. ],
  36. "requestPermissions": [
  37. {
  38. "name": "ohos.permission.DISTRIBUTED_DATASYNC",
  39. "usedScene": {
  40. "abilities": [
  41. "EntryAbility"
  42. ],
  43. "when": "inuse"
  44. }
  45. },
  46. {
  47. "name": "ohos.permission.ACCESS_SERVICE_DM"
  48. },
  49. {
  50. "name": "ohos.permission.REBOOT"
  51. }
  52. ]
  53. }
  54. }