很抱歉,您的应用未通过审核,原因如下:
1、您的应用审核未通过,请参考《小米开发者生态政策》应用隐私合规标准-其他-应用频繁自启动和关联启动:应用不得在未向用户告知且未经用户同意,或无合理使用场景的情况下,频繁自启动或关联启动第三方应用。.
还附带了一个截图给我,我看是 我app的“联系客服”,调用的是微信客服,这是需要用户点击才会唤醒的啊,怎么是自动启动的呢?我手机测试没有这个现象啊。
wxkefu(){
let sweixin = null
plus.share.getServices(res=>{
sweixin = res.find(i => i.id === 'weixin')
if(sweixin){
sweixin.openCustomerServiceChat({
corpid: 'xxxxxxxxxx',
url: 'https://work.weixin.qq.com/kfid/kfc2a4c3bd5bd8ce17c',
},suc=>{
console.log("success",JSON.stringify(res))
},err=>{
console.log("error",JSON.stringify(err))
})
}else{
plus.nativeUI.alert('当前环境不支持微信操作!')
}
},function(){
uni.showToast({title: "获取服务失败,不支持该操作。"+JSON.stringify(e), icon: 'error'})
})
}