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