集成极光推送在vivo开放平台隐私检测不通过
vivo开放平台的隐私检测提示极光推送的 PushReceiver 会在后台监听应用安装和卸载广播,导致应用被拒
cn.jpush.android.service.PushReceiver@ce36d5c=[android.intent.action.PACKAGE_ADDED, android.intent.action.PACKAGE_REMOVED]
以下为检测平台检测结果:
应用集成了极光推送以下依赖:
jpush:5.4.0
jcore:4.8.2
且在初始化SDK时关闭了自启动等选项:
JPushInterface.setSmartPushEnable(applicationContext, false);
JPushInterface.setGeofenceEnable(applicationContext, false);
JCollectionAuth.enableAutoWakeup(applicationContext, false);
JPushInterface.init(applicationContext);
请问应该如何配置极光推送SDK不监听这两个广播,满足隐私合规的要求。