config.json 1.4 KB
Newer Older
M
mamingshuai 已提交
1 2 3 4 5
{
  "app": {
    "bundleName": "com.example.aceceshi",
    "vendor": "example",
    "version": {
J
jiyong 已提交
6 7
      "code": 1000000,
      "name": "1.0.0"
L
luozhewen 已提交
8 9 10 11
    },
    "apiVersion": {
      "compatible": 4,
      "target": 5
M
mamingshuai 已提交
12 13 14 15
    }
  },
  "deviceConfig": {},
  "module": {
J
jiyong 已提交
16 17 18
    "package": "com.example.aceceshi",
    "name": ".MyApplication",
    "mainAbility": "com.example.aceceshi.MainAbility",
M
mamingshuai 已提交
19
    "deviceType": [
J
jiyong 已提交
20
      "phone"
M
mamingshuai 已提交
21 22 23
    ],
    "distro": {
      "deliveryWithInstall": true,
J
jiyong 已提交
24
      "moduleName": "entry",
J
jiyong 已提交
25 26
      "moduleType": "entry",
      "installationFree": false
M
mamingshuai 已提交
27 28 29
    },
    "abilities": [
      {
J
jiyong 已提交
30 31 32 33 34 35 36 37 38 39 40
        "skills": [
          {
            "entities": [
              "entity.system.home"
            ],
            "actions": [
              "action.system.home"
            ]
          }
        ],
        "name": "com.example.aceceshi.MainAbility",
M
mamingshuai 已提交
41
        "icon": "$media:icon",
J
jiyong 已提交
42 43 44
        "description": "$string:mainability_description",
        "label": "$string:entry_MainAbility",
        "type": "page",
J
jiyong 已提交
45 46
        "launchType": "standard",
        "visible": true
M
mamingshuai 已提交
47 48 49 50
      }
    ],
    "js": [
      {
J
jiyong 已提交
51 52 53 54
        "pages": [
          "pages/index/index",
          "pages/routerPush/index",
          "pages/routerReplace/index"
J
jiyong 已提交
55 56 57 58 59 60
        ],
        "name": "default",
        "window": {
          "designWidth": 720,
          "autoDesignWidth": true
        }
M
mamingshuai 已提交
61 62 63 64
      }
    ]
  }
}