Thanks for the help, I'm actually using the Test on device feature in firebase, basically I get the InstanceID from android logs and test with that directly, I can see from logcat after I open the app that it's fetching campaigns and finds one, the text and design is usually updated, but what is confusing to me is why would the message show up when I haven't sent any event from the app yet.
I would imagine the fetching will occur but nothing should be shown before the actual event of the specific campaign is sent from the app.
This is the code I use to trigger the event:
FirebaseAnalytics.getInstance(context).logEvent("login_activity_opened", trackEvent.getEventValues()?.toBundle())
FirebaseInAppMessaging.getInstance().triggerEvent("login_activity_opened")I'm using both just in case, and this is the only thing I have on mobile side.
I attached a screenshot of what I have on firebase side, basically I removed the default events, and using Add event I entered login_activity_created which gave the option "create login_activity_created".
Please note that this event is totally new and was created only through this Schedule config
I might be missing something, let me know if you need more info. cheers