firebase-in-app-messaging

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

℡╲_俬逩灬. 提交于 2021-02-05 09:22:53
问题 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 be shown in the target countries. I have 2 campaigns without any country targets and those messages get shown, but still just sometimes. The first of these campaigns informs the user they have an opportunity to reach Level 1. The message get shown

Duplicate class com.google.common.util.concurrent.ListenableFuture found in modules guava-20.0.jar (com.google.guava:guava:20.0)

心不动则不痛 提交于 2021-02-02 04:44:06
问题 When I use implementation 'com.google.firebase:firebase-inappmessaging-display:17.2.0' in my app/build.gradle , I get this error: Duplicate class com.google.common.util.concurrent.ListenableFuture found in modules guava-20.0.jar (com.google.guava:guava:20.0) and listenablefuture-1.0.jar (com.google.guava:listenablefuture:1.0) Go to the documentation to learn how to Fix dependency resolution errors. What I also have in my app/build.gradle is this: implementation 'com.google.android.gms:play

Firebase In-App Messaging showing in SplashActivity. How to show it in MainActivity?

ε祈祈猫儿з 提交于 2021-01-02 05:57:06
问题 I have enabled Firebase In-App messaging for my android app. When i am testing In-App Messaging it is showing in SplashActivity of the app. Activity flows like: SplashActivity>LoginActivity>MainActivity Note: SplashActivity just have runnable to get delay of 3 seconds. LoginActivity have some functions to check wheter shared preferences are not null. I tried to add in onCreate() this below line of code: FirebaseInAppMessaging.getInstance().setMessagesSuppressed(true) And

How to get “Apps Instance Id” in Flutter

血红的双手。 提交于 2020-12-30 06:51:53
问题 i want to setup firebase inapp messaging on my flutter apps. first, it need FirebaseInstanceId as explained here, so i can test send message to my device. However the document does not tell more detail how to get it on Android, especially on flutter. any idea ? Note : someone has claimed that he can use inapp-messaging in flutter, please see here Thank you in Advance... 回答1: The Firebase Instance ID can be fetched using -instanceIDWithHandler on iOS or getInstanceId on Android. At the time of

Could not find com.google.gms:google-services:4.1.0. Searched in the following locations:

空扰寡人 提交于 2020-01-15 14:53:32
问题 I am trying to add firebase to my project, I am following the steps from firebase documentation https://firebase.google.com/docs/android/setup?authuser=0 help please! I am getting this error when I try to sync gradle. Could not find com.google.gms:google-services:4.1.0. Searched in the following locations: https://repo.maven.apache.org/maven2/com/google/gms/google-services/4.1.0/google-services-4.1.0.pom https://repo.maven.apache.org/maven2/com/google/gms/google-services/4.1.0/google-services

Could not find com.google.gms:google-services:4.1.0. Searched in the following locations:

泄露秘密 提交于 2020-01-15 14:50:21
问题 I am trying to add firebase to my project, I am following the steps from firebase documentation https://firebase.google.com/docs/android/setup?authuser=0 help please! I am getting this error when I try to sync gradle. Could not find com.google.gms:google-services:4.1.0. Searched in the following locations: https://repo.maven.apache.org/maven2/com/google/gms/google-services/4.1.0/google-services-4.1.0.pom https://repo.maven.apache.org/maven2/com/google/gms/google-services/4.1.0/google-services

InApp Messaging won't show message on custom event

元气小坏坏 提交于 2019-12-22 14:51:07
问题 using implementation 'com.google.firebase:firebase-analytics:17.2.1' implementation 'com.google.firebase:firebase-inappmessaging-display:19.0.2' I get the message when using the "Test on device" feature in Firebase I also get message when using the event "on_foreground" but I want to show a message not directly on app start, but when entering a new screen (when I send the event "Show_Category_Screen") like this FirebaseAnalytics mFirebaseAnalytics = FirebaseAnalytics.getInstance(activity);

InApp Messaging won't show message on custom event

拈花ヽ惹草 提交于 2019-12-22 14:50:19
问题 using implementation 'com.google.firebase:firebase-analytics:17.2.1' implementation 'com.google.firebase:firebase-inappmessaging-display:19.0.2' I get the message when using the "Test on device" feature in Firebase I also get message when using the event "on_foreground" but I want to show a message not directly on app start, but when entering a new screen (when I send the event "Show_Category_Screen") like this FirebaseAnalytics mFirebaseAnalytics = FirebaseAnalytics.getInstance(activity);

InAppMessage auto disappears once is shown

烈酒焚心 提交于 2019-12-11 06:06:27
问题 Hi I've recently added InAppMessaging to my project which seems to be easy to integrate, but for me doesn't work as it's expected. First of all I've added this to the build.gradle : implementation 'com.google.firebase:firebase-core:17.0.1' implementation 'com.google.firebase:firebase-inappmessaging-display:18.0.2' then and because I don't want to show the message at the splash screen (IntroActivity.java) I'm doing : @Override public void onCreate(Bundle savedInstanceState) { super.onCreate

Flutter Firebase In-App Messaging [closed]

柔情痞子 提交于 2019-12-09 17:02:51
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 5 months ago . I have just seen on Firebase that a new feature has been released called In-App Messaging. Is there already an idea somewhere how to get this to work with Flutter? 回答1: No, you cannot use it with flutter yet. A flutter plugin needs to be created to be able to use the In-App