module.json5 1.2 KB

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