1/** 2 * Copyright (c) 2021-2022 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 16import { CommonConstants } from '@ohos/common'; 17 18const phonePresetDockItem = [ 19 { 20 itemType: CommonConstants.TYPE_APP, 21 bundleName: 'com.ohos.contacts', 22 abilityName: 'com.ohos.contacts.MainAbility', 23 moduleName: 'entry', 24 editable: true, 25 }, 26 { 27 itemType: CommonConstants.TYPE_APP, 28 bundleName: 'com.ohos.photos', 29 abilityName: 'com.ohos.photos.MainAbility', 30 moduleName: 'entry', 31 editable: true, 32 }, 33 { 34 itemType: CommonConstants.TYPE_APP, 35 bundleName: 'com.ohos.settings', 36 abilityName: 'com.ohos.settings.MainAbility', 37 moduleName: 'phone', 38 editable: true, 39 }, 40 { 41 itemType: CommonConstants.TYPE_APP, 42 bundleName: 'com.ohos.mms', 43 abilityName: 'com.ohos.mms.MainAbility', 44 moduleName: 'entry', 45 editable: true, 46 }, 47]; 48 49export default phonePresetDockItem; 50