I'm getting push notification messages without any problem, but I'm having trouble with the in app message, my firebase versions are as followsenter image description here I did all the installations according to the documentation.But I don't know why it's not working react native version 0.64.4
I tried to install the latest version of firebase but it still didn't work
package.json
"@react-native-firebase/analytics": "14.0.0",
"@react-native-firebase/app": "14.0.0",
"@react-native-firebase/crashlytics": "14.0.0",
"@react-native-firebase/in-app-messaging": "14.0.0",
"@react-native-firebase/messaging": "14.0.0"
async()=> {
async function bootstrap() {
await firebase.inAppMessaging().setMessagesDisplaySuppressed(true);
}
async function onSetup(user) {
await setupUser(user);
firebase.inAppMessaging().setMessagesDisplaySuppressed(false);
}
await bootstrap();
await onSetup();
}