config.json 1.5 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"
M
mamingshuai 已提交
8 9 10 11
    }
  },
  "deviceConfig": {},
  "module": {
J
jiyong 已提交
12 13 14
    "package": "com.example.aceceshi",
    "name": ".MyApplication",
    "mainAbility": "com.example.aceceshi.MainAbility",
M
mamingshuai 已提交
15
    "deviceType": [
J
jiyong 已提交
16
      "phone"
M
mamingshuai 已提交
17 18 19
    ],
    "distro": {
      "deliveryWithInstall": true,
J
jiyong 已提交
20
      "moduleName": "entry",
J
jiyong 已提交
21 22
      "moduleType": "entry",
      "installationFree": false
M
mamingshuai 已提交
23 24 25
    },
    "abilities": [
      {
J
jiyong 已提交
26 27 28 29 30 31 32 33 34 35 36
        "skills": [
          {
            "entities": [
              "entity.system.home"
            ],
            "actions": [
              "action.system.home"
            ]
          }
        ],
        "name": "com.example.aceceshi.MainAbility",
M
mamingshuai 已提交
37
        "icon": "$media:icon",
J
jiyong 已提交
38 39 40 41 42 43 44
        "description": "$string:mainability_description",
        "label": "$string:entry_MainAbility",
        "type": "page",
        "launchType": "standard"
      },
      {
        "name": "decc.testkit.runner.JsEntryAbility",
J
jiyong 已提交
45
        "label": "$string:entry_MainAbility",
J
jiyong 已提交
46 47
        "type": "page",
        "launchType": "standard"
M
mamingshuai 已提交
48 49 50 51
      }
    ],
    "js": [
      {
J
jiyong 已提交
52 53 54 55
        "pages": [
          "pages/index/index",
          "pages/routerPush/index",
          "pages/routerReplace/index"
J
jiyong 已提交
56 57 58 59 60 61
        ],
        "name": "default",
        "window": {
          "designWidth": 720,
          "autoDesignWidth": true
        }
M
mamingshuai 已提交
62 63 64 65
      }
    ]
  }
}