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