2

I want skip message in app on loading screen.

I want firebase in app show message in MainActivity but i dont make this.

Can you help me?

I try use FirebaseInAppMessaging.getInstance().setMessagesSuppressed(true);.

But this alway clear all message.

Frank van Puffelen
  • 565,676
  • 79
  • 828
  • 807
huynh huy
  • 21
  • 3

1 Answers1

1

On loading activity(OnCreate) you have to suppressed message by setting flag true and in OnDestroy method set Suppressed method false by following line.

FirebaseInAppMessaging.getInstance().setMessagesSuppressed(false);

So in Main Activity In App Message will render.

Prashant Jajal
  • 3,469
  • 5
  • 24
  • 38