module.json 1.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
{
    "module": {
        "name": "entry",
        "type": "entry",
        "description": "$string:module_desc",
        "mainElement": "TestAbility",
        "deviceTypes": [
            "default",
            "tablet",
            "2in1"
        ],
        "deliveryWithInstall": true,
        "installationFree": true,
        "pages": "$profile:main_pages",
        "abilities": [
            {
                "name": "TestAbility",
                "srcEntry": "./ets/TestAbility/TestAbility.ets",
                "description": "$string:EntryAbility_desc",
                "icon": "$media:icon",
                "label": "$string:EntryAbility_label",
                "startWindowIcon": "$media:icon",
                "startWindowBackground": "$color:start_window_background",
                "exported": true,
                "skills": [
                    {
                        "entities": [
                            "entity.system.home"
                        ],
                        "actions": [
                            "action.system.home"
                        ]
                    }
                ]
            }
        ]
    }
Z
Zhu Guodong 已提交
38
}