1{ 2 "module": { 3 "name": "entry", 4 "type": "entry", 5 "description": "$string:module_desc", 6 "mainElement": "EntryAbility", 7 "deviceTypes": [ 8 "default", 9 "tablet" 10 ], 11 "deliveryWithInstall": true, 12 "installationFree": false, 13 "pages": "$profile:main_pages", 14 "abilities": [ 15 { 16 "name": "EntryAbility", 17 "srcEntrance": "./ets/entryability/EntryAbility.ts", 18 "description": "$string:EntryAbility_desc", 19 "icon": "$media:icon", 20 "label": "$string:EntryAbility_label", 21 "startWindowIcon": "$media:icon", 22 "startWindowBackground": "$color:start_window_background", 23 "launchType": "standard", 24 "visible": true, 25 "skills": [ 26 { 27 "entities": [ 28 "entity.system.home" 29 ], 30 "actions": [ 31 "action.system.home" 32 ] 33 } 34 ] 35 }, 36 { 37 "name": "SecondAbility", 38 "srcEntrance": "./ets/secondability/SecondAbility.ts", 39 "description": "$string:SecondAbility_desc", 40 "icon": "$media:icon", 41 "label": "$string:SecondAbility_label", 42 "startWindowIcon": "$media:icon", 43 "startWindowBackground": "$color:start_window_background", 44 "visible": true, 45 "launchType": "standard" 46 } 47 ] 48 } 49}