1{ 2 "app": { 3 "bundleName": "com.example.myapplication", 4 "vendor": "example", 5 "version": { 6 "code": 1, 7 "name": "1.0" 8 }, 9 "apiVersion": { 10 "compatible": 4, 11 "target": 5 12 } 13 }, 14 "deviceConfig": {}, 15 "module": { 16 "package": "com.example.myapplication", 17 "name": ".MyApplication", 18 "deviceType": [ 19 "default", 20 "tablet", 21 "2in1" 22 ], 23 "distro": { 24 "deliveryWithInstall": true, 25 "moduleName": "entry", 26 "moduleType": "entry" 27 }, 28 "reqPermissions": [ 29 { 30 "name": "ohos.permission.VIBRATE", 31 "reason": "", 32 "usedScene": { 33 "ability": [ 34 ".MainAbility" 35 ], 36 "when": "inuse" 37 } 38 } 39 ], 40 "abilities": [ 41 { 42 "visible": true, 43 "skills": [ 44 { 45 "entities": [ 46 "entity.system.home" 47 ], 48 "actions": [ 49 "action.system.home" 50 ] 51 } 52 ], 53 "name": "com.example.myapplication.MainAbility", 54 "icon": "$media:icon", 55 "description": "$string:mainability_description", 56 "label": "MyApplication", 57 "type": "page", 58 "launchType": "standard" 59 } 60 ], 61 "js": [ 62 { 63 "pages": [ 64 "pages/index/index" 65 ], 66 "name": "default", 67 "window": { 68 "designWidth": 720, 69 "autoDesignWidth": false 70 } 71 } 72 ] 73 } 74 } 75