1{ 2 "app": { 3 "bundleName": "com.example.myapplication", 4 "vendor": "example", 5 "version": { 6 "code": 1000000, 7 "name": "1.0.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 "reqPermissions": [ 24 { 25 "name": "ohos.permission.INTERNET", 26 "reason": "need use ohos.permission.INTERNET" 27 } 28 ], 29 "distro": { 30 "deliveryWithInstall": true, 31 "moduleName": "entry", 32 "moduleType": "entry", 33 "installationFree": false 34 }, 35 "abilities": [ 36 { 37 "skills": [ 38 { 39 "entities": [ 40 "entity.system.home" 41 ], 42 "actions": [ 43 "action.system.home" 44 ] 45 } 46 ], 47 "orientation": "unspecified", 48 "visible": true, 49 "name": ".MainAbility", 50 "icon": "$media:icon", 51 "description": "$string:mainability_description", 52 "label": "MyApplication", 53 "type": "page", 54 "launchType": "standard" 55 } 56 ], 57 "js": [ 58 { 59 "pages": [ 60 "pages/index/index" 61 ], 62 "name": "default", 63 "window": { 64 "designWidth": 720, 65 "autoDesignWidth": false 66 } 67 } 68 ] 69 } 70} 71