0

I have successfully implemented firebase In-app messaging, working fine. Is there any option to send In-app message whenever we want?

2 Answers2

1

Firebase in-app messages are automatically triggered based on rules you write when you build the app.

If you want to show a message in an app at a moment you determine after the app has shipped, you should use Firebase Cloud Messaging for delivering those messages, or at least to trigger their display.

Frank van Puffelen
  • 565,676
  • 79
  • 828
  • 807
0

According to the documentation:

To conserve power, Firebase In-App Messaging only retrieves messages from the server once per day. That can make testing difficult, so the Firebase console allows you to specify a test device that displays messages on demand.

Ilkin
  • 386
  • 3
  • 17