module.json 1.8 KB
Newer Older
1
15829070344 已提交
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": [
T
txl000 已提交
9 10 11 12
            "tablet",
            "default",
            "phone",
            "2in1"
1
15829070344 已提交
13 14 15 16 17
        ],
        "deliveryWithInstall": true,
        "installationFree": false,
        "uiSyntax": "ets",
        "pages": "$profile:main_pages",
T
txl000 已提交
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
        "abilities": [
            {
                "name": "com.example.accounttstest.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"
                        ]
                    }
1
15829070344 已提交
36
                ]
T
txl000 已提交
37 38
            }
        ],
39 40
        "requestPermissions": [
            {
T
txl000 已提交
41
                "name": "ohos.permission.GET_BUNDLE_INFO_PRIVILEGED"
42 43
            },
            {
T
txl000 已提交
44
                "name": "ohos.permission.GET_BUNDLE_INFO"
45 46
            },
            {
T
txl000 已提交
47
                "name": "ohos.permission.CHANGE_ABILITY_ENABLED_STATE"
48 49
            },
            {
T
txl000 已提交
50
                "name": "ohos.permission.REMOVE_CACHE_FILES"
51 52
            },
            {
T
txl000 已提交
53
                "name": "ohos.permission.LISTEN_BUNDLE_CHANGE"
54 55
            },
            {
T
txl000 已提交
56
                "name": "ohos.permission.START_ABILITIES_FROM_BACKGROUND"
57 58
            }
        ]
1
15829070344 已提交
59 60
    }
}