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