Skip to content

In app messages

Alexander Boldyrev edited this page Oct 31, 2024 · 1 revision

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 from 4.0.0 version.

Enabling In-App messages

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.

Notice

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,
            ...
  );
}

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

Clone this wiki locally