Resolving Push Client Conflicts
This article describes how to avoid or resolve push client conflicts that may occur in your application.
Push client conflicts may arise due to the following scenarios:
- Your application has already integrated a third-party push client, which conflicts with the third-party vendor push client SDKs required by RC's push service.
- Other SDKs integrated into your application have already included a third-party push client, which conflicts with the third-party vendor push client SDKs required by RC's push service.
If either of the above situations applies, you can choose whether to use RC's push client integration solution.
Discontinuing RC's Push Client Integration Solution
If you decide not to use RC's push client integration solution, follow these steps:
-
Refer to the push client integration documentation to complete the third-party push configuration in the Console.
-
Before initializing the SDK, you must create a
PushConfig
, enable the push channels based on the vendors you use, and provide the configuration toRongPushClient
.PushConfig config = new PushConfig.Builder()
.enableFCM(true)
.enableHWPush(true)
.enableVivoPush(true)
.enableMiPush("Xiaomi appId", "Xiaomi appKey") // Xiaomi push configuration
.enableMeiZuPush("Meizu appId", "Meizu appKey") // Meizu push configuration
.enableOppoPush("OPPO_App_KEY", "OPPO_App_Secret") // OPPO push configuration
.build();
RongPushClient.setPushConfig(config); // Set push-related configurations to the SDK -
Obtain the vendor token from the third-party push SDK. For specific instructions, please refer to the third-party push SDK documentation.
-
Since
RongPushClient
will execute asynchronously during SDK initialization and does not yet provide an initialization completion notification, it is recommended that you delay calling theonReceiveToken
method to report the third-party token to RC by approximately 3 seconds. Otherwise, the SDK will not be able to report push-related statistics correctly.PushManager.getInstance().onReceiveToken(context,pushType,token);
-
Check the logs to verify if the token was successfully reported. Search for the keyword
L-push-config-report-token-R
. If the log showsreport token success
, the integration was successful.
Continuing to Use RC's Push Client Integration Solution
If you wish to continue using RC's push client integration solution, you can remove the push SDK integrated into your application and obtain the vendor push token from the RC IM SDK's callback, then report it to the third-party push vendor or integrator.
You can set up PushEventListener
in the onCreate
method of your Application and obtain the vendor push token through the onTokenReceived(PushType pushType, String token);
callback method.
RongPushClient.setPushEventListener(
new PushEventListener() {
@Override
public void onTokenReceived(
PushType pushType,
String token) {
}
/// Other methods omitted here
});