devio
devio

Reputation: 654

What is the deference between "firebase-messaging" and "firebase-inappmessaging-display"?

When i use Android Studio to add firebase in app messaging it adds this dependency to build gradle

implementation 'com.google.firebase:firebase-inappmessaging-display:20.1.2'

but it deosn't work till i add this one:

implementation 'com.google.firebase:firebase-messaging:23.0.6'

what are the differences here? #firebase-inappmessaging-display

Upvotes: 2

Views: 977

Answers (1)

ΓDΛ
ΓDΛ

Reputation: 11060

firebae-inappmessaging-display

Firebase In-App Messaging helps you engage your app's active users by sending them targeted, contextual messages that encourage them to use key app features. For example, you could send an in-app message to get users to subscribe, watch a video, complete a level, or buy an item. You can customize messages as cards, banners, modals, or images, and set up triggers so that they appear exactly when they'd benefit your users most.

firebase-messaging

Firebase Cloud Messaging (FCM) is a cross-platform messaging solution that lets you reliably send messages at no cost.

Upvotes: 2

Related Questions