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 "default", 10 "tablet", 11 "2in1", 12 "wearable" 13 ], 14 "deliveryWithInstall": true, 15 "installationFree": false, 16 "pages": "$profile:test_pages", 17 "abilities": [ 18 { 19 "name": "TestAbility", 20 "srcEntry": "./ets/TestAbility/TestAbility.ets", 21 "description": "$string:TestAbility_desc", 22 "icon": "$media:icon", 23 "label": "$string:TestAbility_label", 24 "exported": true, 25 "startWindowIcon": "$media:icon", 26 "startWindowBackground": "$color:start_window_background", 27 "skills": [ 28 { 29 "actions": [ 30 "action.system.home" 31 ], 32 "entities": [ 33 "entity.system.home" 34 ] 35 } 36 ] 37 }, 38 { 39 "name": "MainAbility1", 40 "srcEntry": "./ets/MainAbility1/MainAbility1.ts", 41 "description": "$string:MainAbility1_desc", 42 "icon": "$media:icon", 43 "label": "$string:MainAbility1_label", 44 "startWindowIcon": "$media:icon", 45 "startWindowBackground": "$color:start_window_background", 46 "launchType": "multiton" 47 } 48 ] 49 } 50}