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 16#ifndef OHOS_ABILITY_RUNTIME_ABILITY_CONFIG_H 17#define OHOS_ABILITY_RUNTIME_ABILITY_CONFIG_H 18 19#include <string> 20 21namespace OHOS { 22namespace AAFwk { 23namespace AbilityConfig { 24constexpr const char* NAME_ABILITY_MGR_SERVICE = "AbilityManagerService"; 25constexpr const char* SCHEME_DATA_ABILITY = "dataability"; 26constexpr const char* SYSTEM_UI_BUNDLE_NAME = "com.ohos.systemui"; 27constexpr const char* SYSTEM_UI_STATUS_BAR = "com.ohos.systemui.statusbar.ServiceExtAbility"; 28constexpr const char* SYSTEM_UI_NAVIGATION_BAR = "com.ohos.systemui.navigationbar.ServiceExtAbility"; 29constexpr const char* SYSTEM_DIALOG_NAME = "com.ohos.systemui.systemdialog.MainAbility"; 30constexpr const char* SYSTEM_UI_ABILITY_NAME = "com.ohos.systemui.ServiceExtAbility"; 31constexpr const char* DEVICE_MANAGER_BUNDLE_NAME = "com.ohos.devicemanagerui"; 32constexpr const char* DEVICE_MANAGER_NAME = "com.ohos.devicemanagerui.MainAbility"; 33constexpr const char* LAUNCHER_ABILITY_NAME = "com.ohos.launcher.MainAbility"; 34constexpr const char* LAUNCHER_BUNDLE_NAME = "com.ohos.launcher"; 35constexpr const char* LAUNCHER_RECENT_ABILITY_NAME = "com.ohos.launcher.recents.MainAbility"; 36constexpr const char* SCENEBOARD_BUNDLE_NAME = "com.ohos.sceneboard"; 37constexpr const char* SCENEBOARD_ABILITY_NAME = "com.ohos.sceneboard.MainAbility"; 38constexpr const char* GRANT_ABILITY_BUNDLE_NAME = "com.ohos.permissionmanager"; 39constexpr const char* GRANT_ABILITY_ABILITY_NAME = "com.ohos.permissionmanager.GrantAbility"; 40constexpr const char* PARAMS_STREAM = "ability.params.stream"; 41constexpr const char* CALLUI_ABILITY_NAME = "com.ohos.callui.ServiceAbility"; 42constexpr const char* MISSION_NAME_MARK_HEAD = "#"; 43constexpr const char* MISSION_NAME_SEPARATOR = ":"; 44} // namespace AbilityConfig 45} // namespace AAFwk 46} // namespace OHOS 47 48#endif // OHOS_ABILITY_RUNTIME_ABILITY_CONFIG_H 49