module.json 1.7 KB
Newer Older
H
hanyaru 已提交
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 38 39 40 41 42 43 44 45 46 47 48 49 50 51
    "module": {
        "name": "phone",
        "type": "entry",
        "srcEntrance": "./ets/Application/AbilityStage.ts",
        "description": "$string:entry_desc",
        "mainElement": "MainAbility",
        "deviceTypes": [
            "tablet",
            "default",
            "phone",
            "tablet",
            "2in1"
        ],
        "deliveryWithInstall": true,
        "installationFree": false,
        "pages": "$profile:main_pages",
        "uiSyntax": "ets",
        "abilities": [
            {
                "name": "com.example.ActsWukongTest.MainAbility",
                "srcEntrance": "./ets/MainAbility/MainAbility.ts",
                "description": "$string:MainAbility_desc",
                "icon": "$media:icon",
                "label": "$string:MainAbility_label",
                "visible": true,
                "skills": [
                    {
                        "entities": [
                            "entity.system.home"
                        ],
                        "actions": [
                            "action.system.home"
                        ]
                    }
                ]
            }
        ],
        "requestPermissions": [
            {
                "name": "ohos.permission.SET_ABILITY_CONTROLLER",
                "reason": "need use ohos.permission.SET_ABILITY_CONTROLLER"
            },
            {
                "name": "ohos.permission.CAPTURE_SCREEN",
                "reason": "need use ohos.permission.CAPTURE_SCREEN"
            },
            {
                "name": "ohos.permission.INPUT_MONITORING",
                "reason": "need use ohos.permission.INPUT_MONITORING"
            }
H
hanyaru 已提交
52
        ]
53 54
    }
}