1/* 2* Copyright (c) 2023 Huawei Device Co., Ltd. 3* Licensed under the Apache License, Version 2.0 (the "License") 4* you may not use this file except in compliance with the License. 5* You may obtain a copy of the License at 6* 7* http://www.apache.org/licenses/LICENSE-2.0 8* 9* Unless required by applicable law or agreed to in writing, software 10* distributed under the License is distributed on an "AS IS" BASIS, 11* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12* See the License for the specific language governing permissions and 13* limitations under the License. 14*/ 15 16{ 17 "module": { 18 "name": "entry", 19 "type": "entry", 20 "description": "$string:module_desc", 21 "mainElement": "EntryAbility", 22 "deviceTypes": [ 23 "default", 24 "tablet" 25 ], 26 "deliveryWithInstall": true, 27 "installationFree": false, 28 "pages": "$profile:main_pages", 29 "abilities": [ 30 { 31 "name": "EntryAbility", 32 "srcEntrance": "./ets/entryability/EntryAbility.ts", 33 "description": "$string:EntryAbility_desc", 34 "icon": "$media:icon", 35 "label": "$string:EntryAbility_label", 36 "startWindowIcon": "$media:icon", 37 "startWindowBackground": "$color:start_window_background", 38 "visible": true, 39 "skills": [ 40 { 41 "entities": [ 42 "entity.system.home" 43 ], 44 "actions": [ 45 "action.system.home" 46 ] 47 } 48 ] 49 }, 50 { 51 "name": "clickAbility", 52 "srcEntrance": "./ets/clickability/ClickAbility.ts", 53 "description": "$string:clickability_desc", 54 "icon": "$media:icon", 55 "label": "$string:clickability_label", 56 "startWindowIcon": "$media:icon", 57 "startWindowBackground": "$color:start_window_background", 58 "visible": true 59 }, 60 { 61 "name": "InputAbility", 62 "srcEntrance": "./ets/inputability/InputAbility.ts", 63 "description": "$string:InputAbility_desc", 64 "icon": "$media:icon", 65 "label": "$string:InputAbility_label", 66 "startWindowIcon": "$media:icon", 67 "startWindowBackground": "$color:start_window_background", 68 "visible": true 69 }, 70 { 71 "name": "MouseAbility", 72 "srcEntrance": "./ets/mouseability/MouseAbility.ts", 73 "description": "$string:MouseAbility_desc", 74 "icon": "$media:icon", 75 "label": "$string:MouseAbility_label", 76 "startWindowIcon": "$media:icon", 77 "startWindowBackground": "$color:start_window_background", 78 "visible": true 79 }, 80 { 81 "name": "FlingAbility", 82 "srcEntrance": "./ets/flingability/FlingAbility.ts", 83 "description": "$string:FlingAbility_desc", 84 "icon": "$media:icon", 85 "label": "$string:FlingAbility_label", 86 "startWindowIcon": "$media:icon", 87 "startWindowBackground": "$color:start_window_background", 88 "visible": true 89 }, 90 { 91 "name": "SwipeAbility", 92 "srcEntrance": "./ets/swipeability/SwipeAbility.ts", 93 "description": "$string:SwipeAbility_desc", 94 "icon": "$media:icon", 95 "label": "$string:SwipeAbility_label", 96 "startWindowIcon": "$media:icon", 97 "startWindowBackground": "$color:start_window_background", 98 "visible": true 99 }, 100 { 101 "name": "PinchAbility", 102 "srcEntrance": "./ets/pinchability/PinchAbility.ts", 103 "description": "$string:PinchAbility_desc", 104 "icon": "$media:icon", 105 "label": "$string:PinchAbility_label", 106 "startWindowIcon": "$media:icon", 107 "startWindowBackground": "$color:start_window_background", 108 "visible": true 109 }, 110 { 111 "name": "PointMatrixAbility", 112 "srcEntrance": "./ets/pointmatrixability/PointMatrixAbility.ts", 113 "description": "$string:PointMatrixAbility_desc", 114 "icon": "$media:icon", 115 "label": "$string:PointMatrixAbility_label", 116 "startWindowIcon": "$media:icon", 117 "startWindowBackground": "$color:start_window_background", 118 "visible": true 119 }, 120 { 121 "name": "ScrollerAbility", 122 "srcEntrance": "./ets/scrollerability/ScrollerAbility.ts", 123 "description": "$string:ScrollerAbility_desc", 124 "icon": "$media:icon", 125 "label": "$string:ScrollerAbility_label", 126 "startWindowIcon": "$media:icon", 127 "startWindowBackground": "$color:start_window_background", 128 "visible": true 129 }, 130 { 131 "name": "DragAbility", 132 "srcEntrance": "./ets/dragability/DragAbility.ts", 133 "description": "$string:DragAbility_desc", 134 "icon": "$media:icon", 135 "label": "$string:DragAbility_label", 136 "startWindowIcon": "$media:icon", 137 "startWindowBackground": "$color:start_window_background", 138 "visible": true 139 } 140 ] 141 } 142}