module.json5 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "module": {
  3. "name": "entry",
  4. "type": "entry",
  5. "description": "$string:module_desc",
  6. "mainElement": "EntryAbility",
  7. "deviceTypes": ["phone","tablet","2in1","wearable"],
  8. "deliveryWithInstall": true,
  9. "installationFree": false,
  10. "pages": "$profile:main_pages",
  11. "abilities": [
  12. {
  13. "name": "EntryAbility",
  14. "srcEntry": "./ets/entryability/EntryAbility.ets",
  15. "description": "$string:EntryAbility_desc",
  16. "icon": "$media:layered_image",
  17. "label": "$string:EntryAbility_label",
  18. "startWindowIcon" : "$media:startIcon",
  19. "startWindowBackground" : "$color:start_window_background"
  20. ,
  21. "exported": true
  22. ,
  23. "skills": [
  24. {
  25. "entities": [
  26. "entity.system.home"
  27. ],
  28. "actions": [
  29. "action.system.home"
  30. ]
  31. }
  32. ]
  33. }],"extensionAbilities": [
  34. {
  35. "name": "EntryBackupAbility",
  36. "srcEntry": "./ets/entrybackupability/EntryBackupAbility.ets",
  37. "type": "backup",
  38. "exported": false,
  39. "metadata": [
  40. {
  41. "name": "ohos.extension.backup",
  42. "resource": "$profile:backup_config"
  43. }
  44. ],
  45. }
  46. ]
  47. }
  48. }