应用列表模块
此模块用来获取系统预装的应用和用户自己安装的应用列表。
API
DataStructure
ESAppInfo
应用信息
Name | Description | Type | Default |
---|---|---|---|
name | 应用名称 | string | - |
pkg | 应用包名 | string | - |
verCode | 应用版本号 | number | - |
verName | 应用版本名称 | string | - |
installTime | 应用安装时间 | number | - |
updateTime | 应用更新时间 | number | - |
isSystemApp | 是否是系统应用 | boolean | - |
ESAppInfoList
应用列表
Name | Description | Type | Default |
---|---|---|---|
system | 系统应用列表 | Array<ESAppInfo> | - |
user | 用户应用列表 | Array<ESAppInfo> | - |
Exposes
Name | Description | Type |
---|---|---|
isAppInstalled | 该方法根据应用包名判断应用是否安装 | Function |
isSystemApp | 该方法根据应用包名判断应用是否是系统应用 | Function |
getAppList | 该方法获取系统应用列表 | Function |
getAppInfo | 该方法获取应用信息 | Function |
getAutoStartAppList | 该方法获取系统开机启动应用列表 | Function |