module.json 776 字节
Newer Older
C
chengxingzhen 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
{
  "module": {
    "name": "entry_test",
    "type": "entry",
    "srcEntrance": "./ets/Application/MyAbilityStage.ts",
    "description": "$string:entry_test_desc",
    "mainElement": "MainAbility",
    "deviceTypes": [
      "default",
      "tablet"
    ],
    "deliveryWithInstall": true,
    "installationFree": false,
    "pages": "$profile:main_pages",
    "uiSyntax": "ets",
Z
zhouchaobo 已提交
16 17 18 19 20 21
    "metadata": [
      {
        "name": "ArkTSPartialUpdate",
        "value": "false"
      }
    ],
C
chengxingzhen 已提交
22 23 24 25 26 27 28 29 30 31 32 33
    "abilities": [
      {
        "name": "MainAbility",
        "srcEntrance": "./ets/MainAbility/MainAbility.ts",
        "description": "$string:MainAbility_desc",
        "icon": "$media:icon",
        "label": "$string:MainAbility_label",
        "visible": true
      }
    ]
  }
}