# getAppIsInstalled

获取手机是否安装某第三方App

# 参数代码示例

// 检查是否安装了第三方App
this.$bridge.getAppIsInstalled({
    packageName: 'com.tencent.mm'
}).then(res => {
    console.log(res)
})
1
2
3
4
5
6