Questions tagged [firebase-in-app-messaging]

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.

About Firebase In-app Messaging

Firebase In-app Messaging is a component of the Firebase suite of tools for cross-platform application development.

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 Messaging to get users to subscribe, watch a video, complete a level, or buy an item. You can customize messages as banners, modals, or images, and set up triggers so that they appear exactly when they'd benefit your users most.

Use Firebase In-App Messaging to encourage exploration and discovery: highlight a sale or coupon in your ecommerce app, give clues or tips in your game, or prompt a like or share in your social media app.

Key capabilities

  • Send relevant, engaging messages

    Firebase In-App Messaging sends messages when they're most needed: while users are actually in your app. Promote your big sale when users visit your in-app store, not while they're in line at the grocery store. Highlight that cool, new level when users play your game, not when they're sitting down to watch the big game.

  • Target messages by audience or behavior

    Firebase In-App Messaging works with Analytics and Predictions to give you tools to deliver messages to the users you'd most like to reach. Send messages based on users' demographics, past behavior, or even predictions of their future behavior.

  • Create flexible, custom alerts

    With the ability to customize your messages' style, appearance, display triggers, and content all in a few clicks, Firebase In-App Messaging helps you do everything from sending promotional offers to getting users to update to a new version of your app.

Related tags

147 questions
2
votes
3 answers

Can't install Firebase/InAppMessagingDisplay: they required higher minimum deployment target

I'm trying to use Firebase In-App Messaging and just added some lines to my Podfile. But when I run pod install, I got an error message below: [!] CocoaPods could not find compatible versions for pod "Firebase/InAppMessagingDisplay": In…
lipsum
  • 919
  • 2
  • 13
  • 24
2
votes
0 answers

Firebase InApp Messaging open a deeplink only once in Swift

I'm having difficulty using In-App Messaging and I do not know how to solve this problem. I configured the button action with the URL of a Deeplink mapped in the application, but when I click this button, no action happens. My problem is with the…
rafaeldepaula
  • 168
  • 1
  • 1
  • 10
2
votes
2 answers

InApp Messaging Error

It gives me Unable to merge dex error. If i comment dependency of InApp Messaging then it works fine. Error:Execution failed for task ':app:transformDexArchiveWithExternalLibsDexMergerForDebug'. java.lang.RuntimeException:…
PRATEEK BHARDWAJ
  • 2,364
  • 2
  • 21
  • 35
1
vote
1 answer

How display Firebase In-App Messaging on TWA?

I tried to display In-App Messaging but it didn't show up with TWA. In-App Messaging works without any problems with normal Activity. I use https://github.com/GoogleChrome/android-browser-helper/tree/main/demos/twa-basic to test TWA. My application…
tesst
  • 11
  • 2
1
vote
0 answers

Does anyone know how to get a message from the Firebase in-app messaging server every time the app is launched?

Firebase In-App Messaging is designed to retrieve messages from the server only once a day, but I would like to retrieve Firebase In-App Messaging messages stored on the server at each app startup. Does anyone know how to implement this?
KDDI太郎
  • 11
  • 1
1
vote
1 answer

Firebase In-App-Messaging wont show in campaign, but also work in test device

I am using firebase in-ap-messaging with analytics, and my campaign wont show if i publish, but also work in test device with test campaign. in build.gradle; implementation platform('com.google.firebase:firebase-bom:30.0.1') implementation…
1
vote
0 answers

Firebase in app messages going missing for new users

we are using Firebase in app messaging on iOS and Android, targeted on an imported segment of firebase tokens. However, its not clear from the documentation what is supposed to happen if the segment is updated and re-imported with new users. Does…
1
vote
1 answer

Firebase Dynamic Link isn't handled in ios app

I am using Firebase Dynamic Links to handle deep linking into my ios app (from external links) and this works fine. My issue is when I try to handle a dynamic link that has been launched from inside the app. In particular, I am using Firebase in-app…
1
vote
1 answer

Firebase target users based on the imported segments

I would like to send in-app and cloud messages to a group of users based on non-standard criteria. I decided to link firebase project with BigQuery and use imported segments to accomplish this task. The problem is that fcm message composer always…
1
vote
0 answers

Conflict between Firebase in app messaging ( implementation 'com.google.firebase:firebase-inappmessaging-display:19.1.5') and gRPC in Android

I was going to implement Firebase in-app messaging functionality in my Android application that uses gRPC server. However when I put a dependency for Firebase in-app messaging (implementation…
1
vote
1 answer

Stop Firebase Dynamic Links from redirecting to browser when opened from within app

We want a user to complete their profile, so an in-app message pops up and if they accept, it redirects them to the edit profile page. It's working, but it redirects to the browser, comes back the app, and then completes the navigation to the…
1
vote
1 answer

Does Azure have similar feature like Firebase In-App Messaging

I am currently using Azure Notification Hub to send push notifications. I however also need to make use of in-app messaging, a feature I am only of being provided by Firebase at the moment: Firebase In-App Messaging Does Azure/Microsoft have such a…
1
vote
1 answer

Why are my Firebase In-app messages unreliable in production?

In-app messages work well in test mode, but seem to be very unreliable in production. I made campaigns with "Modals" as the message layout. The simplest possible messages, without any pictures. If I set countries as the targets, no messages seem to…
1
vote
1 answer

FirebaseAnalytics "First open" not displaying In-App Message

FirebaseAnalytics In-App message targetting "First open" (image below) never shows the In-App message with either firebaseAnalytics.logEvent(FirebaseAnalytics.Event.APP_OPEN, Bundle()) or firebaseAnalytics.logEvent(FirebaseAnalytics.Event.APP_OPEN,…
Bill Mote
  • 12,644
  • 7
  • 58
  • 82
1
vote
0 answers

Problem with firebase_in_app_messaging dependency. Getting error : "Use of undeclared identifier 'FIRInAppMessaging' "

I've installed firebase_in_app_messaging: ^0.1.2 Flutter lib from pub.dev. After that, I couldn't run the app because iOS can't see FIRInAppMessaging. Checked in Xcode Pods/Targets there is no FirebaseInAppMessaging pod installed. Does anybody else…