找到对应的广播来源
重写覆盖监听
移除监听action
<intent-filter tools:node="removeAll">
移除融云sdk自启服务
<receiver
android:name="io.rong.push.rongpush.PushReceiver"
android:exported="true"
android:process="io.rong.push"> <!-- 此处进程可以改名,名称需要和PushService所在进程统一 -->
<!-- 心跳事件和网络切换事件监听,必须 -->
<intent-filter >
<action android:name="io.rong.push.intent.action.HEART_BEAT" />
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
</intent-filter>
<!-- 部分用户事件监听, 用来提高推送拉活率; 可移除 -->
<intent-filter tools:node="removeAll">
<action android:name="android.intent.action.USER_PRESENT" />
<action android:name="android.intent.action.ACTION_POWER_CONNECTED" />
<action android:name="android.intent.action.ACTION_POWER_DISCONNECTED" />
</intent-filter>
</receiver>