In app messages - infobip/mobile-messaging-react-native-plugin GitHub Wiki
Intro
In-App messages are a type of communication tool with mobile users that includes banners, pop-ups and other formats that appear on screen of mobile applications while users are interacting with it. Read more documentation
Notice
Previously known as
Full-featured In-App notifications
.
In-App messages
Feature is available since 10.0.0 version.
Enabling In-App messages
In-App messages are disabled by default. Without enabling In-App messages MMNotificationMessageReceived
event is triggered, but In-App not processed and not displayed within WebView.
Notice
Enabling this feature also enables JavaScript execution on the webView for the feature proper work.
To set up In-App messages for Mobile Messaging SDK plugin, put fullFeaturedInAppsEnabled: true
in configuration:
mobileMessaging.init({
...
fullFeaturedInAppsEnabled: true,
...
});
Android
For more information about In-App messages on Android platform, please refer to Android SDK In-App messages documentation
iOS
For more information about In-App messages on iOS platform, please refer to iOS SDK In-App messages documentation