Why isn't Firebase In-App Messaging working on physical iOS device?

Viewed 6194

Currently, I am trying to get Firebase In-App Messaging to show up on physical devices. It will only show up on the simulator devices for some reason. I am using Xcode(Swift programming language) and my Firebase pods are up to date. Is there some extra code that I need to add to trigger the In-App Messaging?

Does it only work with certain iOS devices?

(This is not Firebase Cloud Messaging)

This is an image of the what I am asking about.

4 Answers

I had the same problem.

In the "Schedule > Event" setting, it was only on_foreground, but adding app_launch and first_open then works on physical devices.

FirebaseInAppMessaging 0.11.0

Hope it helps.

@IanSp, it should work on physical iOS device for on_foegreound triggering conditions. Did you try to do app fore-ground a couple of times. Sometimes, it would have delay in fetching the messages and therefore it would have to wait for next app foreground timing to get it rendered.

Related