config.json 1.2 KB
Newer Older
C
chensi10 已提交
1 2
{
  "app": {
J
jiyong 已提交
3
    "bundleName": "com.example.WantAgenTest2",
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": {
J
jiyong 已提交
17
    "package": "com.example.WantAgenTest2",
C
chensi10 已提交
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
    "name": ".MyApplication",
    "deviceType": [
      "phone"
    ],
    "distro": {
      "deliveryWithInstall": true,
      "moduleName": "entry",
      "moduleType": "entry"
    },
    "abilities": [
      {
        "skills": [
          {
            "entities": [
              "entity.system.home"
            ],
            "actions": [
              "action.system.home"
            ]
          }
        ],
J
jiyong 已提交
39
        "name": "com.example.WantAgenTest2.MainAbility",
C
chensi10 已提交
40 41 42 43 44
        "icon": "$media:icon",
        "description": "$string:mainability_description",
        "label": "$string:app_name",
        "type": "page",
        "isVisible": "true",
S
shuxiong 已提交
45 46
        "launchType": "standard",
        "visible": true
C
chensi10 已提交
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
      }
    ],
    "js": [
      {
        "pages": [
          "pages/index/index"
        ],
        "name": "default",
        "window": {
          "designWidth": 720,
          "autoDesignWidth": false
        }
      }
    ]
  }
J
jiyong 已提交
62
}