-
Notifications
You must be signed in to change notification settings - Fork 12
In app messages
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
Previously known as
Full-featured In-App notifications
.
Feature is available from 4.0.0 version.
In-App messages are disabled by default. When disabled, the MMNotificationMessageReceived
event will still be triggered, but the In-App won't be processed nor displayed within WebView.
Enabling this feature also enables JavaScript execution on the webView for the feature proper work.
To set up In-App messages for the Mobile Messaging SDK plugin, add fullFeaturedInAppsEnabled: true
into your app.js
configuration:
/**
* Initializing MobileMessaging plugin here
*/
initMobileMessaging: function() {
MobileMessaging.init({
applicationCode: APP_CODE,
...
fullFeaturedInAppsEnabled: true,
...
);
}
For more information about In-App messages on Android platform, please refer to Android SDK In-App messages documentation
For more information about In-App messages on iOS platform, please refer to iOS SDK In-App messages documentation
If you have any questions or suggestions, feel free to send an email to [email protected] or create an issue.
- Library events
- Server errors
- Users and installations
- Messages and notifications management
- Inbox
- Geofencing
- Privacy settings
- In-app chat
- Migration guides
- Troubleshooting