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