# 应用信息
提示
支持hatom V2.1+ 查看hatom版本hatom --version
hatom <=v2.1 使用 hatom.native("AppInfo.getAppInfo", (res) => {}, params);
使用示例:
hatom.appInfo.getAppInfo(res=> {
console.log(res.message);
})
输入参数说明:
参数 | 类型 | 必填 | 描述 |
---|---|---|---|
callback | 函数 | 是 | 回调函数 |
输出参数说明:
参数 | 类型 | 描述 |
---|---|---|
code | string | 返回码 0表示成功 |
message | string | 返回值 json字符串 |
json字符串通过JSON.parse(message)转为对象, 参数如下所示:
参数 | 类型 | 描述 |
---|---|---|
appName | String | app名称 |
OSVersion | String | 系统版本 |
model | String | 系统型号 |
appName | String | app名称 |
packageName | String | app安装包apk包名 |
versionName | String | 版本名称 |
versionCode | String | 版本号 |