Multiple Push Provider implementation issue detected
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.
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