Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
238e6f50
D
Docs
项目概览
OpenHarmony
/
Docs
1 年多 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
238e6f50
编写于
8月 09, 2023
作者:
I
ImCaO
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
添加企业NORMAL应用和MDM应用安装权限及错误码
Signed-off-by:
N
ImCaO
<
zhoushihui4@huawei.com
>
上级
bae87b24
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
36 addition
and
7 deletion
+36
-7
zh-cn/application-dev/reference/apis/js-apis-installer.md
zh-cn/application-dev/reference/apis/js-apis-installer.md
+21
-6
zh-cn/application-dev/reference/errorcodes/errorcode-bundle.md
.../application-dev/reference/errorcodes/errorcode-bundle.md
+15
-1
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-installer.md
浏览文件 @
238e6f50
...
...
@@ -95,11 +95,15 @@ install(hapFilePaths: Array<string>, installParam: InstallParam, callback:
**系统接口:**
此接口为系统接口。
**需要权限:**
ohos.permission.INSTALL_BUNDLE 或 ohos.permission.INSTALL_ENTERPRISE_BUNDLE
<sup>
10+
</sup>
> **说明:** 从API version 10起,可通过ohos.permission.INSTALL_ENTERPRISE_BUNDLE权限调用此接口。
**需要权限:**
ohos.permission.INSTALL_BUNDLE 或 ohos.permission.INSTALL_ENTERPRISE_BUNDLE
<sup>
10+
</sup>
或 ohos.permission.INSTALL_ENTERPRISE_NORMAL_BUNDLE
<sup>
10+
</sup>
或 ohos.permission.INSTALL_ENTERPRISE_MDM_BUNDLE
<sup>
10+
</sup>
> **说明:** 从API version 10起,可通过ohos.permission.INSTALL_ENTERPRISE_BUNDLE
或 ohos.permission.INSTALL_ENTERPRISE_NORMAL_BUNDLE 或 ohos.permission.INSTALL_ENTERPRISE_MDM_BUNDLE
权限调用此接口。
>
> 安装企业应用需要ohos.permission.INSTALL_ENTERPRISE_BUNDLE权限
>
> 安装企业NORMAL应用需要ohos.permission.INSTALL_ENTERPRISE_NORMAL_BUNDLE或ohos.permission.INSTALL_ENTERPRISE_MDM_BUNDLE权限
>
> 安装企业MDM应用需要ohos.permission.INSTALL_ENTERPRISE_MDM_BUNDLE权限
>
> 安装普通应用需要ohos.permission.INSTALL_BUNDLE权限
**系统能力:**
SystemCapability.BundleManager.BundleFramework.Core
...
...
@@ -135,6 +139,7 @@ install(hapFilePaths: Array<string>, installParam: InstallParam, callback:
| 17700044 | Failed to install the HAP because the isolationMode configured is not supported. |
| 17700047 | Failed to install the HAP because the VersionCode to be updated is not greater than the current VersionCode. |
| 17700048 | Failed to install the HAP because the code signature verification is failed. |
| 17700050 | Failed to install the HAP because enterprise normal/MDM bundle cannot be installed on non-enterprise device. |
**示例:**
...
...
@@ -170,11 +175,15 @@ install(hapFilePaths: Array<string>, callback: AsyncCallback<void>):
**系统接口:**
此接口为系统接口。
**需要权限:**
ohos.permission.INSTALL_BUNDLE 或 ohos.permission.INSTALL_ENTERPRISE_BUNDLE
<sup>
10+
</sup>
> **说明:** 从API version 10起,可通过ohos.permission.INSTALL_ENTERPRISE_BUNDLE权限调用此接口。
**需要权限:**
ohos.permission.INSTALL_BUNDLE 或 ohos.permission.INSTALL_ENTERPRISE_BUNDLE
<sup>
10+
</sup>
或 ohos.permission.INSTALL_ENTERPRISE_NORMAL_BUNDLE
<sup>
10+
</sup>
或 ohos.permission.INSTALL_ENTERPRISE_MDM_BUNDLE
<sup>
10+
</sup>
> **说明:** 从API version 10起,可通过ohos.permission.INSTALL_ENTERPRISE_BUNDLE
或 ohos.permission.INSTALL_ENTERPRISE_NORMAL_BUNDLE 或 ohos.permission.INSTALL_ENTERPRISE_MDM_BUNDLE
权限调用此接口。
>
> 安装企业应用需要ohos.permission.INSTALL_ENTERPRISE_BUNDLE权限
>
> 安装企业NORMAL应用需要ohos.permission.INSTALL_ENTERPRISE_NORMAL_BUNDLE或ohos.permission.INSTALL_ENTERPRISE_MDM_BUNDLE权限
>
> 安装企业MDM应用需要ohos.permission.INSTALL_ENTERPRISE_MDM_BUNDLE权限
>
> 安装普通应用需要ohos.permission.INSTALL_BUNDLE权限
**系统能力:**
SystemCapability.BundleManager.BundleFramework.Core
...
...
@@ -208,6 +217,7 @@ install(hapFilePaths: Array<string>, callback: AsyncCallback<void>):
| 17700044 | Failed to install the HAP because the isolationMode configured is not supported. |
| 17700047 | Failed to install the HAP because the VersionCode to be updated is not greater than the current VersionCode. |
| 17700048 | Failed to install the HAP because the code signature verification is failed. |
| 17700050 | Failed to install the HAP because enterprise normal/MDM bundle cannot be installed on non-enterprise device. |
**示例:**
...
...
@@ -240,11 +250,15 @@ install(hapFilePaths: Array\<string\>, installParam?: InstallParam) : Promise\<v
**系统接口:**
此接口为系统接口。
**需要权限:**
ohos.permission.INSTALL_BUNDLE 或 ohos.permission.INSTALL_ENTERPRISE_BUNDLE
<sup>
10+
</sup>
> **说明:** 从API version 10起,可通过ohos.permission.INSTALL_ENTERPRISE_BUNDLE权限调用此接口。
**需要权限:**
ohos.permission.INSTALL_BUNDLE 或 ohos.permission.INSTALL_ENTERPRISE_BUNDLE
<sup>
10+
</sup>
或 ohos.permission.INSTALL_ENTERPRISE_NORMAL_BUNDLE
<sup>
10+
</sup>
或 ohos.permission.INSTALL_ENTERPRISE_MDM_BUNDLE
<sup>
10+
</sup>
> **说明:** 从API version 10起,可通过ohos.permission.INSTALL_ENTERPRISE_BUNDLE
或 ohos.permission.INSTALL_ENTERPRISE_NORMAL_BUNDLE 或 ohos.permission.INSTALL_ENTERPRISE_MDM_BUNDLE
权限调用此接口。
>
> 安装企业应用需要ohos.permission.INSTALL_ENTERPRISE_BUNDLE权限
>
> 安装企业NORMAL应用需要ohos.permission.INSTALL_ENTERPRISE_NORMAL_BUNDLE或ohos.permission.INSTALL_ENTERPRISE_MDM_BUNDLE权限
>
> 安装企业MDM应用需要ohos.permission.INSTALL_ENTERPRISE_MDM_BUNDLE权限
>
> 安装普通应用需要ohos.permission.INSTALL_BUNDLE权限
**系统能力:**
SystemCapability.BundleManager.BundleFramework.Core
...
...
@@ -285,6 +299,7 @@ install(hapFilePaths: Array\<string\>, installParam?: InstallParam) : Promise\<v
| 17700044 | Failed to install the HAP because the isolationMode configured is not supported. |
| 17700047 | Failed to install the HAP because the VersionCode to be updated is not greater than the current VersionCode. |
| 17700048 | Failed to install the HAP because the code signature verification is failed. |
| 17700050 | Failed to install the HAP because enterprise normal/MDM bundle cannot be installed on non-enterprise device. |
**示例:**
...
...
zh-cn/application-dev/reference/errorcodes/errorcode-bundle.md
浏览文件 @
238e6f50
...
...
@@ -644,4 +644,18 @@ Failed to install the HAP because the code signature verification is failed.
**处理步骤**
<br/>
1.
检查代码签名文件对应的module是否包含在安装包路径之中。
2.
检查提供的代码签名文件的路径是否合法。
3.
使用和安装包匹配的代码签名文件。
\ No newline at end of file
3.
使用和安装包匹配的代码签名文件。
## 17700050 企业设备校验失败
**错误信息**
<br/>
Failed to install the HAP because enterprise normal/MDM bundle cannot be installed on non-enterprise device.
**错误描述**
<br/>
安装应用时,企业normal应用或企业mdm应用无法在非企业设备上安装。
**可能原因**
<br/>
1.
安装设备不是企业设备。
**处理步骤**
<br/>
1.
检查安装设备是否为企业设备。
2.
检查设备参数const.bms.allowenterprisebundle是否为true
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录