module.json 1.2 KB
Newer Older
H
hekun 已提交
1 2 3 4 5 6 7 8 9 10
{
    "module": {
        "name": "phone",
        "type": "entry",
        "srcEntrance": "./ets/Application/AbilityStage.ts",
        "description": "$string:phone_entry_dsc",
        "mainElement": "MainAbility",
        "deviceTypes": [
            "tablet",
            "default",
11 12
            "phone",
            "2in1"
H
hekun 已提交
13 14 15 16 17
        ],
        "deliveryWithInstall": true,
        "installationFree": false,
        "uiSyntax": "ets",
        "pages": "$profile:main_pages",
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
        "abilities": [
            {
                "name": "com.open.harmony.acedevtest.MainAbility",
                "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"
                        ]
                    }
H
hekun 已提交
36
                ]
37 38
            }
        ]
H
hekun 已提交
39
    }
40
}