1{ 2 "module": { 3 "name": "phone", 4 "type": "entry", 5 "srcEntrance": "./ets/Application/AbilityStage.ts", 6 "description": "$string:phone_entry_dsc", 7 "mainElement": "MainAbility", 8 "deviceTypes": [ 9 "tablet", 10 "default", 11 "phone" 12 ], 13 "deliveryWithInstall": true, 14 "installationFree": false, 15 "uiSyntax": "ets", 16 "pages": "$profile:main_pages", 17 "abilities": [ 18 { 19 "name": "com.example.myapplication.MainAbility", 20 "srcEntrance": "./ets/MainAbility/MainAbility.ts", 21 "description": "$string:phone_entry_main", 22 "icon": "$media:icon", 23 "label": "$string:entry_label", 24 "visible": true, 25 "orientation": "portrait", 26 "skills": [ 27 { 28 "actions": [ 29 "action.system.home" 30 ], 31 "entities": [ 32 "entity.system.home" 33 ] 34 } 35 ] 36 } 37 ], 38 "requestPermissions": [ 39 { 40 "name": "ohos.permission.MEDIA_LOCATION", 41 "reason": "use ohos.permission.MEDIA_LOCATION" 42 }, 43 { 44 "name": "ohos.permission.READ_MEDIA", 45 "reason": "use ohos.permission.READ_MEDIA" 46 }, 47 { 48 "name": "ohos.permission.WRITE_MEDIA", 49 "reason": "use ohos.permission.WRITE_MEDIA" 50 } 51 ] 52 } 53}