config.json 1.4 KB
Newer Older
C
chensi10 已提交
1 2
{
  "app": {
C
chensi10 已提交
3
    "bundleName": "com.example.myapplication5",
C
chensi10 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16
    "vendor": "example",
    "version": {
      "code": 1,
      "name": "1.0"
    },
    "apiVersion": {
      "compatible": 5,
      "target": 5,
      "releaseType": "Beta1"
    }
  },
  "deviceConfig": {},
  "module": {
C
chensi10 已提交
17
    "package": "com.example.myapplication",
C
chensi10 已提交
18 19 20 21 22 23 24 25 26 27 28 29 30 31
    "name": ".MyApplication",
    "deviceType": [
      "phone"
    ],
    "distro": {
      "deliveryWithInstall": true,
      "moduleName": "entry",
      "moduleType": "entry"
    },
    "abilities": [
      {
        "skills": [
          {
            "entities": [
R
r00559040 已提交
32 33
              "entity.system.home",
              "entitiesentities"
C
chensi10 已提交
34 35 36 37 38 39
            ],
            "actions": [
              "action.system.home"
            ]
          }
        ],
C
chensi10 已提交
40
        "name": ".MainAbility",
C
chensi10 已提交
41 42 43
        "icon": "$media:icon",
        "description": "$string:mainability_description",
        "label": "$string:app_name",
Z
zhaoyuan17 已提交
44
        "type": "data",
C
chensi10 已提交
45 46
        "isVisible": "true",
        "launchType": "standard",
Z
zhaoyuan17 已提交
47 48 49
        "language": "C++", 
        "orientation": "followrecent",
        "uri":"dataability://"
C
chensi10 已提交
50 51 52 53 54 55 56 57 58 59 60 61 62
      }
    ],
    "js": [
      {
        "pages": [
          "pages/index/index"
        ],
        "name": "default",
        "window": {
          "designWidth": 720,
          "autoDesignWidth": false
        }
      }
Z
zhaoyuan17 已提交
63
    ],
S
shilei 已提交
64
    "description":"$string:entry_description"
C
chensi10 已提交
65 66
  }
}