1{ 2 "module": { 3 "name": "entryTest", 4 "type": "feature", 5 "description": "$string:module_test_desc", 6 "srcEntry": "./ets/Application/AbilityStage.ts", 7 "mainElement": "TestAbility", 8 "deviceTypes": [ 9 "phone" 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 "name": "MainAbility1", 37 "srcEntry": "./ets/MainAbility1/MainAbility1.ts", 38 "description": "$string:MainAbility1_desc", 39 "icon": "$media:icon", 40 "label": "$string:MainAbility1_label", 41 "startWindowIcon": "$media:icon", 42 "startWindowBackground": "$color:start_window_background", 43 "launchType": "multiton" 44 } 45 ] 46 } 47}