module.json 2.5 KB
Newer Older
Z
zhangyushuai 已提交
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 12
            "tablet",
            "default",
            "phone",
            "2in1"
Z
zhangyushuai 已提交
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
        ],
        "deliveryWithInstall": true,
        "installationFree": false,
        "uiSyntax": "ets",
        "pages": "$profile:main_pages",
        "abilities": [
            {
                "name": "com.acts.inputmethodengine.test.MainAbility",
                "srcEntrance": "./ets/MainAbility/MainAbility.ts",
                "description": "$string:phone_entry_main",
                "icon": "$media:icon",
                "label": "$string:entry_label",
                "visible": true,
                "orientation": "portrait",
                "launchType": "singleton",
                "skills": [
                    {
                        "actions": [
                            "action.system.home"
                        ],
33
                        "entities": [
Z
zhangyushuai 已提交
34 35 36 37 38 39 40 41
                            "entity.system.home"
                        ]
                    }
                ]
            }
        ],
        "extensionAbilities": [
            {
42 43 44 45 46 47
                "description": "\u8f93\u5165\u6cd5demoStage",
                "icon": "$media:icon",
                "name": "inputStageService",
                "srcEntrance": "./ets/InputMethodAbility/InputStageService.ts",
                "type": "inputMethod",
                "visible": true
Z
zhangyushuai 已提交
48 49
            },
            {
50 51 52 53 54 55
                "description": "\u8f93\u5165\u6cd5Demo",
                "icon": "$media:icon",
                "name": "InputDemoService",
                "srcEntrance": "./ets/InputMethodEngine/InputDemoService.ts",
                "type": "inputMethod",
                "visible": true
56 57 58 59 60 61 62 63
            },
            {
                "description": "keyEventDemo",
                "icon": "$media:icon",
                "name": "InputKeyService",
                "srcEntrance": "./ets/InputMethodEngineKey/InputKeyService.ts",
                "type": "inputMethod",
                "visible":true
Z
zhangyushuai 已提交
64 65 66 67
            }
        ],
        "requestPermissions": [
            {
68 69
                "name": "ohos.permission.GET_BUNDLE_INFO_PRIVILEGED",
                "reason": "need use ohos.permission.GET_BUNDLE_INFO_PRIVILEGED"
Z
zhangyushuai 已提交
70
            },
71 72 73
            {
                "name": "ohos.permission.CONNECT_IME_ABILITY"
            }
Z
zhangyushuai 已提交
74 75
        ]
    }
76
}