module.json5 906 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "module": {
  3. "name": "entry_test",
  4. "type": "feature",
  5. "description": "$string:module_test_desc",
  6. "mainElement": "TestAbility",
  7. "deviceTypes": [
  8. "phone",
  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:icon",
  20. "label": "$string:TestAbility_label",
  21. "exported": true,
  22. "startWindowIcon": "$media:icon",
  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. }
  37. }