From 92ae9adc73b97397842f4c663668e0192c3ad471 Mon Sep 17 00:00:00 2001 From: jiangminsen Date: Wed, 14 May 2025 17:09:15 +0800 Subject: [PATCH] =?UTF-8?q?bm=E9=94=99=E8=AF=AF=E7=A0=81msg=E5=90=8E?= =?UTF-8?q?=E9=9D=A2=E7=BB=9F=E4=B8=80=E5=8A=A0=E4=B8=8A=E7=82=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: jiangminsen --- frameworks/src/bundle_command_common.cpp | 44 ++++++++++++------------ 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/frameworks/src/bundle_command_common.cpp b/frameworks/src/bundle_command_common.cpp index ec84738..e57d7b7 100644 --- a/frameworks/src/bundle_command_common.cpp +++ b/frameworks/src/bundle_command_common.cpp @@ -304,27 +304,27 @@ std::map BundleCommandCommon::bundleMessageMap_ = { }, { IStatusReceiver::ERR_INSTALL_APPTYPE_NOT_SAME, - "error: install failed due to apptype not same", + "error: install failed due to apptype not same.", }, { IStatusReceiver::ERR_INSTALL_TYPE_ERROR, - "error: install failed due to error bundle type" + "error: install failed due to error bundle type." }, { IStatusReceiver::ERR_INSTALL_SDK_INCOMPATIBLE, - "error: install failed due to older sdk version in the device" + "error: install failed due to older sdk version in the device." }, { IStatusReceiver::ERR_INSTALL_SO_INCOMPATIBLE, - "error: install failed due to native so is incompatible" + "error: install failed due to native so is incompatible." }, { IStatusReceiver::ERR_INSTALL_AN_INCOMPATIBLE, - "error: install failed due to ark native file is incompatible" + "error: install failed due to ark native file is incompatible." }, { IStatusReceiver::ERR_INSTALL_URI_DUPLICATE, - "error: install failed due to uri prefix duplicate", + "error: install failed due to uri prefix duplicate.", }, { IStatusReceiver::ERR_INSTALL_PARSE_UNEXPECTED, @@ -584,7 +584,7 @@ std::map BundleCommandCommon::bundleMessageMap_ = { }, { IStatusReceiver::ERR_OVERLAY_INSTALLATION_FAILED_TARGET_MODULE_IS_OVERLAY_MODULE, - "error: target module cannot be overlay module of overlay installation", + "error: target module cannot be overlay module of overlay installation.", }, { IStatusReceiver::ERR_OVERLAY_INSTALLATION_FAILED_OVERLAY_TYPE_NOT_SAME, @@ -596,19 +596,19 @@ std::map BundleCommandCommon::bundleMessageMap_ = { }, { IStatusReceiver::ERR_INSTALL_ASAN_ENABLED_NOT_SAME, - "error: install asanEnabled not same", + "error: install asanEnabled not same.", }, { IStatusReceiver::ERR_INSTALL_ASAN_ENABLED_NOT_SUPPORT, - "error: install asan enabled is not support", + "error: install asan enabled is not support.", }, { IStatusReceiver::ERR_INSTALL_BUNDLE_TYPE_NOT_SAME, - "error: install bundleType not same", + "error: install bundleType not same.", }, { IStatusReceiver::ERR_APPEXECFWK_UNINSTALL_SHARE_APP_LIBRARY_IS_NOT_EXIST, - "error: shared bundle is not exist", + "error: shared bundle is not exist.", }, { IStatusReceiver::ERR_APPEXECFWK_UNINSTALL_SHARE_APP_LIBRARY_IS_RELIED, @@ -616,15 +616,15 @@ std::map BundleCommandCommon::bundleMessageMap_ = { }, { IStatusReceiver::ERR_INSATLL_CHECK_PROXY_DATA_URI_FAILED, - "error: uri in proxy data is wrong", + "error: uri in proxy data is wrong.", }, { IStatusReceiver::ERR_INSATLL_CHECK_PROXY_DATA_PERMISSION_FAILED, - "error: apl of required permission in proxy data is too low", + "error: apl of required permission in proxy data is too low.", }, { IStatusReceiver::ERR_INSTALL_FAILED_DEBUG_NOT_SAME, - "error: install debug type not same", + "error: install debug type not same.", }, { IStatusReceiver::ERR_INSTALL_ISOLATION_MODE_FAILED, @@ -636,7 +636,7 @@ std::map BundleCommandCommon::bundleMessageMap_ = { }, { IStatusReceiver::ERR_UNINSTALL_FROM_BMS_EXTENSION_FAILED, - "error: uninstall bundle from extension failed", + "error: uninstall bundle from extension failed.", }, { IStatusReceiver::ERR_INSTALL_ENTERPRISE_BUNDLE_NOT_ALLOWED, @@ -645,31 +645,31 @@ std::map BundleCommandCommon::bundleMessageMap_ = { }, { IStatusReceiver::ERR_INSTALLD_COPY_FILE_FAILED, - "error: copy file failed", + "error: copy file failed.", }, { IStatusReceiver::ERR_INSTALL_GWP_ASAN_ENABLED_NOT_SAME, - "error: install GWPAsanEnabled not same", + "error: install GWPAsanEnabled not same.", }, { IStatusReceiver::ERR_INSTALL_DEBUG_BUNDLE_NOT_ALLOWED, - "error: debug bundle can only be installed in developer mode", + "error: debug bundle can only be installed in developer mode.", }, { IStatusReceiver::ERR_INSTALL_CHECK_ENCRYPTION_FAILED, - "error: check encryption failed", + "error: check encryption failed.", }, { IStatusReceiver::ERR_INSTALL_CODE_SIGNATURE_DELIVERY_FILE_FAILED, - "error: delivery sign profile failed", + "error: delivery sign profile failed.", }, { IStatusReceiver::ERR_INSTALL_CODE_SIGNATURE_REMOVE_FILE_FAILED, - "error: remove sign profile failed", + "error: remove sign profile failed.", }, { IStatusReceiver::ERR_INSTALL_CODE_APP_CONTROLLED_FAILED, - "error: failed to install because the device be controlled", + "error: failed to install because the device be controlled.", }, { IStatusReceiver::ERR_UNKNOWN, -- Gitee