react-native-firebase icon indicating copy to clipboard operation
react-native-firebase copied to clipboard

Multiple Push Provider implementation issue detected

Open Ashu9997 opened this issue 3 months ago • 1 comments

Using "@react-native-firebase/app": "23.5.0",

I am also using a third party SDK from salesforce which has its own messaging service registered for android . And I also need to receive push from firebase as well . I am getting this error/warning in log.

!PushMessageManager com.net.apex.W Possible Multiple Push Provider implementation issue detected in your application. This may lead to the malfunctioning of the Push SDK. !PushMessageManager com.net.apex V io.invertase.firebase.messaging.ReactNativeFirebaseMessagingService is having higher priority than the Push SDK

How can have both in my project and i want both to receive notification ? I have done digging and found out the setting priority in manifest might work . But i am not sure . Could you please point me in the right direction here . Thanks for Your support.

Ashu9997 avatar Nov 30 '25 05:11 Ashu9997

I would recommend disabling one of the services like so e.t.c:

<service android:name="com.net.apex.push.PushFCMMessagingService"
         tools:node="remove" />

If you want to do it by priority, you can make your own service and make it top priority in the android manifest

MichaelVerdon avatar Dec 01 '25 10:12 MichaelVerdon