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 ], 22 "distro": { 23 "deliveryWithInstall": true, 24 "moduleName": "entry", 25 "moduleType": "entry" 26 }, 27 "reqPermissions": [ 28 { 29 "name": "ohos.permission.VIBRATE", 30 "reason": "", 31 "usedScene": { 32 "ability": [ 33 ".MainAbility" 34 ], 35 "when": "inuse" 36 } 37 } 38 ], 39 "abilities": [ 40 { 41 "visible": true, 42 "skills": [ 43 { 44 "entities": [ 45 "entity.system.home" 46 ], 47 "actions": [ 48 "action.system.home" 49 ] 50 } 51 ], 52 "name": "com.example.myapplication.MainAbility", 53 "icon": "$media:icon", 54 "description": "$string:mainability_description", 55 "label": "MyApplication", 56 "type": "page", 57 "launchType": "standard" 58 } 59 ], 60 "js": [ 61 { 62 "pages": [ 63 "pages/index/index" 64 ], 65 "name": "default", 66 "window": { 67 "designWidth": 720, 68 "autoDesignWidth": false 69 } 70 } 71 ] 72 } 73 } 74