支持的应用 name:Wechat、SinaWeibo、Alipay、BaiduMap、AMap、QQ、CTripTravel、QunarTravel、GoogleMaps。 参考
参数 | 类型 | 必填项 | 默认值 | 描述 | 备注 | 平台 |
---|---|---|---|---|---|---|
options | Object | √ | 配置 | iOS Android | ||
options.apps | Array | √ | 检测的数组 | iOS Android | ||
options.apps[i].name | String | × | 应用名称,支持列表Wechat 、SinaWeibo 、Alipay 、BaiduMap 、AMap 、QQ 、CTripTravel 、QunarTravel 、GoogleMaps | iOS Android | ||
options.apps[i].androidPkgId | String | × | 安卓应用 id | 当没有 name 时需要传递 | iOS Android | |
options.apps[i].iosAppId | String | × | iOS应用 id | 当没有 name 时需要传递 | iOS Android |
返回参数是一个对象,key 为要检测的应用的 name,如果没有 name,则为应用的 androidPkgId/iosAppId。
无
YISModule.Tool.checkInstalledApp(
{
apps: [{
name: 'Wechat'
}, {
androidPkgId: 'test.Android',
iosAppId: 'test.iOS'
}],
}
(error, data) => {
if(error) {
} else {
// data
}
}
);