1{ 2 "module": { 3 "name": "entry", 4 "type": "entry", 5 "description": "$string:module_desc", 6 "mainElement": "EntryAbility", 7 "deviceTypes": [ 8 "default" 9 ], 10 "deliveryWithInstall": true, 11 "installationFree": false, 12 "pages": "$profile:main_pages", 13 "abilities": [ 14 { 15 "name": "EntryAbility", 16 "srcEntry": "./ets/entryability/EntryAbility.ts", 17 "description": "$string:EntryAbility_desc", 18 "icon": "$media:icon", 19 "label": "$string:EntryAbility_label", 20 "startWindowIcon": "$media:icon", 21 "startWindowBackground": "$color:start_window_background", 22 "exported": true, 23 "skills": [ 24 { 25 "entities": [ 26 "entity.system.home" 27 ], 28 "actions": [ 29 "action.system.home" 30 ] 31 } 32 ] 33 } 34 ], 35 "extensionAbilities": [ 36 { 37 "name": "ServiceAbility", 38 "srcEntrance": "./ets/serviceability/ServiceAbility.ts", 39 "label": "$string:ServiceAbility_label", 40 "description": "$string:ServiceAbility_desc", 41 "type": "service", 42 "visible": true 43 } 44 ], 45 "requestPermissions": [ 46 { 47 "name": "ohos.permission.START_ABILITIES_FROM_BACKGROUND" 48 }, 49 { 50 "name": "ohos.permission.REMOVE_CACHE_FILES" 51 } 52 ] 53 } 54}