module.json 1.1 KB
Newer Older
X
xiongwei 已提交
1 2 3 4 5 6 7 8
{
    "module": {
        "name": "phone",
        "type": "entry",
        "srcEntrance": "./ets/Application/AbilityStage.ts",
        "description": "$string:phone_entry_dsc",
        "mainElement": "MainAbility",
        "deviceTypes": [
S
add  
shilei 已提交
9
      "tablet",
S
add  
shilei 已提交
10
      "default",
X
xiongwei 已提交
11 12 13 14 15 16
            "phone"
        ],
        "deliveryWithInstall": true,
        "installationFree": false,
        "uiSyntax": "ets",
        "pages": "$profile:main_pages",
Z
zhouchaobo 已提交
17 18 19 20 21 22
        "metadata": [
            {
              "name": "ArkTSPartialUpdate",
              "value": "false"
            }
          ],
X
xiongwei 已提交
23
        "abilities": [{
X
xiongwei 已提交
24
            "name": "com.example.ActsEffectKitTest.MainAbility",
X
xiongwei 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38
            "srcEntrance": "./ets/MainAbility/MainAbility.ts",
            "description": "$string:phone_entry_main",
            "icon": "$media:icon",
            "label": "$string:entry_label",
            "visible": true,
            "orientation": "portrait",
            "skills": [{
                "actions": [
                    "action.system.home"
                ],
                "entities": [
                    "entity.system.home"
                ]
            }]
X
xiongwei 已提交
39
        }]
X
xiongwei 已提交
40 41
    }
}