Android Push Templates

Learn how to implement and customize Push Notification for your Android device.

Overview

The CleverTap Push Templates SDK enhances user engagement through rich, customizable push notification templates that work seamlessly with CleverTap Android SDK v7.3.0 and above.

Prerequisites

To use the CleverTap Push Templates SDK, you must integrate the CleverTap Android SDK version 7.3.0 or above.

Installation

The Android Push Templates SDK supports the following two integration options:

  • Out-of-the-box Implementation : Uses CleverTap's default notification handling, where templates are rendered without additional customization or code changes in your app.
  • Custom Implementation: Allows you to control how push notifications are received and displayed.

Configure Out-of-the-Box Push Notification Handling

To configure out-of-the-box Push Notification Handling, perform the following steps:

  1. Add the dependencies to the build as given in the following code:
implementation "com.clevertap.android:push-templates:2.0.0" // 2.0.0 and above
implementation "com.clevertap.android:clevertap-android-sdk:7.3.0" // 7.3.0 and above
  1. Add the following line of code to your Application class:
CleverTapAPI.setNotificationHandler((NotificationHandler)new PushTemplateNotificationHandler());
CleverTapAPI.setNotificationHandler(PushTemplateNotificationHandler() as NotificationHandler);

Customize Push Notification Handling

To customize the Push Notification handling, add the following code in your custom FirebaseMessageService class:

public class PushTemplateMessagingService extends FirebaseMessagingService {
    @Override
    public void onMessageReceived(RemoteMessage remoteMessage) {
        CTFcmMessageHandler()
                .createNotification(getApplicationContext(), remoteMessage);
    }
}
class MyFcmMessageListenerService : FirebaseMessagingService() {
    override fun onMessageReceived(message: RemoteMessage) {
        super.onMessageReceived(message)
            CTFcmMessageHandler()
                .createNotification(applicationContext, message)
    }
}

Supported Push Templates

You can implement the following customizable push notification templates using the CleverTap Android Push Template Library SDK. The templates can be broadly classified as follows:

Basic Templates

Carousel Templates

Advanced Templates

Standard Push Template

Standard Template is a default template for push notifications received on apps that supports a simple layout with title, message, image, and optional buttons, ideal for quick, informative alerts. For example, an e-commerce business might want to inform customers that their order is on the way.

Standard Push Template

Standard Push Template

Advanced Push Template

This template supports rich media, deep links, and enhanced customization for more engaging messages. It is ideal for interactive, visually appealing messages. For example, businesses can use it to build excitement for new product drops, early access offers, or feature rollouts that benefit from strong visuals and clear Call to Action (CTAs).

For template outputs Android 11 and below, refer to Push Templates on Android v11 and below.

Advanced Push Template

Advanced Push Template

Template Keys

Advanced Template KeysRequiredDescription
pt_idRequiredIndicates the type of template, for example, pt_basic.
pt_titleRequiredMaps to the campaign title, the main headline of your notification must be concise and attention-grabbing, defining the exact purpose of your campaign.
pt_msgRequiredMaps to the campaign message, the body text of your notification. The message should clearly convey the purpose of your campaign.
pt_msg_summaryRequiredMessage line when Notification is expanded.
pt_subtitleOptionalSubtitle
pt_bgRequiredBackground color of your push notification. You can use it to match your brand theme or draw visual attention to the notification. It accepts HEX codes or color pickers.
pt_bg_darkOptionalBackground color of your push notification in dark mode
pt_big_imgOptionalImage
pt_icoOptionalLarge Icon
pt_dl1OptionalOne Deep Link (minimum)
pt_title_clrOptionalTitle Color in HEX
pt_title_clr_darkOptionalTitle Color in HEX in dark mode
pt_msg_clrOptionalMessage Color in HEX
pt_msg_clr_darkOptionalMessage Color in HEX in dark mode
pt_small_icon_clrOptionalSmall Icon Color in HEX
pt_small_icon_clr_darkOptionalSmall Icon Color in HEX in dark mode
pt_scale_typeOptionalSpecify the image scaling type for notifications. Available values:
  • fit_center
  • center_crop

  • For more information on how it works, refer to Image Scaling.
    pt_jsonOptionalAbove template keys in JSON format

    Auto Carousel Template

    Auto Carousel is an automatic revolving carousel push notification that automatically cycles through multiple cards or slides within a single notification. Each card typically includes an image, title, description, and a CTA button, allowing users to view multiple offers, messages, or product highlights without leaving their device’s notification tray.

    Auto Carousel Template

    Auto Carousel Template

    Template Keys

    Auto Carousel Template KeysRequiredDescription
    pt_idRequiredIndicates the type of template, for example, pt_carousel.
    pt_titleRequiredMaps to the campaign title, the main headline of your notification must be concise and attention-grabbing, defining the exact purpose of your campaign.
    pt_msgRequiredMaps to the campaign message, the body text of your notification. The message should clearly convey the purpose of your campaign.
    pt_msg_summaryOptionalMessage line when Notification is expanded.
    pt_subtitleOptionalSubtitle
    pt_dl1RequiredDeep Link (Max one)
    pt_img1RequiredImage One
    pt_img2RequiredImage Two
    pt_img3RequiredImage Three
    pt_imgnOptionalImage N
    pt_bgRequiredBackground Color in HEX
    pt_bg_darkRequiredBackground Color in HEX in dark mode
    pt_icoOptionalLarge Icon
    pt_title_clrOptionalTitle Color in HEX
    pt_title_clr_darkOptionalTitle Color in HEX in dark mode.
    pt_msg_clrOptionalMessage Color in HEX
    pt_msg_clr_darkOptionalMessage Color in HEX in dark mode
    pt_small_icon_clrOptionalSmall Icon Color in HEX
    pt_small_icon_clr_darkOptionalSmall Icon Color in HEX in dark mode
    pt_scale_typeOptionalSpecify the image scaling type for notifications. Available values:
  • fit_center
  • center_crop

  • For more information on how it works, refer to Image Scaling.
    pt_jsonOptionalAbove keys in JSON format

    Manual Carousel Template

    Manual Carousel is an interactive push notification format that allows users to browse through multiple cards or slides at their own pace. Each card typically features rich content such as images, titles, short descriptions, and a CTA. Navigation is user-controlled, with arrows or swipe gestures enabling the transition between cards.

    If only a single image is available for download, this template falls back to the Basic Template.

    Manual Carousel Template

    Manual Carousel Template

    Template Keys

    Manual Carousel Template KeysRequiredDescription
    pt_idRequiredIndicates the type of template, for example,pt_manual_carousel
    pt_titleRequiredMaps to the campaign title, the main headline of your notification must be concise and attention-grabbing, defining the exact purpose of your campaign.
    pt_msgRequiredMaps to the campaign message, the body text of your notification. The message should clearly convey the purpose of your campaign.
    pt_msg_summaryOptionalMessage line when Notification is expanded
    pt_subtitleOptionalSubtitle
    pt_dl1RequiredDeep Link One
    pt_dl2OptionalDeep Link Two
    pt_dlnOptionalDeep Link for the nth image
    pt_img1RequiredImage One
    pt_img2RequiredImage Two
    pt_img3RequiredImage Three
    pt_imgnOptionalImage N
    pt_bgRequiredBackground Color in HEX
    pt_bg_darkRequiredBackground Color in HEX in dark mode
    pt_icoOptionalLarge Icon
    pt_title_clrOptionalTitle Color in HEX
    pt_title_clr_darkOptionalTitle Color in HEX in dark mode
    pt_msg_clrOptionalMessage Color in HEX
    pt_msg_clr_darkOptionalMessage Color in HEX in dark mode
    pt_small_icon_clrOptionalSmall Icon Color in HEX
    pt_small_icon_clr_darkOptionalSmall Icon Color in HEX in dark mode
    pt_scale_typeOptionalSpecify the image scaling type for notifications. Available values:
  • fit_center
  • center_crop

  • For more information on how it works, refer to Image Scaling.
    pt_jsonOptionalAbove keys in JSON format
    pt_manual_carousel_typeOptionalfilmstrip

    Five Icons Template

    The Five Icons template is a sticky push notification with no text, just five icons, and a close button that can help your users go directly to the functionality of their choice with a button click.

    The library does not notify if at least three icons are not retrieved. The bifurcation of each CTA is captured in the event Notification Clicked within the property wzrk_c2a.

    By default, if the user clicks on any notification area except the five and close icons, an activity intent launches.

    Template Keys

    Five Icons Template KeysRequiredDescription
    pt_idRequiredIndicates the type of template, for example,pt_five_icons
    pt_img1RequiredIcon One
    pt_img2RequiredIcon Two
    pt_img3RequiredIcon Three
    pt_img4OptionalIcon Four
    pt_img5OptionalIcon Five
    pt_dl1RequiredDeep Link for first icon
    pt_dl2RequiredDeep Link for second icon
    pt_dl3RequiredDeep Link for third icon
    pt_dl4OptionalDeep Link for fourth icon
    pt_dl5OptionalDeep Link for fifth icon
    pt_bgRequiredBackground Color in HEX
    pt_small_icon_clrOptionalSmall Icon Color in HEX
    pt_small_icon_clr_darkOptionalSmall Icon Color in HEX in dark mode
    pt_jsonOptionalAbove keys in JSON format

    Timer Template

    Timer template is a dynamic and time-sensitive push notification template designed to display a live countdown timer directly within the notification. This format is ideal for creating urgency around limited-time offers, flash sales, upcoming events, or deadlines. You can update the new message, title, or background image automatically once the countdown expires, keeping the notification relevant and engaging after expiry.

    Timer notification is only supported for Android version 8 and above. For Android versions below 8, the library falls back to the Basic Template.

    Timer Template

    Timer Template

    Template Keys

    Timer Template KeysRequiredDescription
    pt_idRequiredIndicates the type of template, for example, pt_timer
    pt_titleRequiredMaps to the campaign title, the main headline of your notification must be concise and attention-grabbing, defining the exact purpose of your campaign.
    pt_title_altOptionalTitle to show after timer expires
    pt_msgRequiredMaps to the campaign message, the body text of your notification. The message should clearly convey the purpose of your campaign.
    pt_msg_altOptionalMessage to show after timer expires
    pt_msg_summaryOptionalMessage line when Notification is expanded
    pt_subtitleOptionalSubtitle
    pt_dl1RequiredDeep Link
    pt_big_imgOptionalImage
    pt_big_img_altOptionalImage to show when timer expires
    pt_bgRequiredBackground Color in HEX
    pt_bg_darkRequiredBackground Color in HEX in dark mode
    pt_chrono_title_clrOptionalColor for timer text in HEX
    pt_chrono_title_clr_darkOptionalColor for timer text in HEX in dark mode
    pt_timer_thresholdRequiredTimer duration in seconds (minimum 10)
    pt_timer_endOptionalEpoch Timestamp to countdown to (for example, $D_1595871380 or 1595871380). Not required if pt_timer_threshold is specified.
    pt_title_clrOptionalTitle Color in HEX
    pt_title_clr_darkOptionalTitle Color in HEX in dark mode
    pt_msg_clrOptionalMessage Color in HEX
    pt_msg_clr_darkOptionalMessage Color in HEX in dark mode
    pt_small_icon_clrOptionalSmall Icon Color in HEX
    pt_small_icon_clr_darkOptionalSmall Icon Color in HEX in dark mode
    pt_scale_typeOptionalSpecify the image scaling type for notifications. Available values:
  • fit_center
  • center_crop

  • For more information on how it works, refer to Image Scaling.
    pt_render_terminalOptionalDetermines whether terminal notification is rendered
    Value- true or false
    pt_msg_summary_altOptional Summary to display once the timer expires
    pt_jsonOptionalAbove keys in JSON format

    Text over Image Template

    Text over Image template is a visually immersive push notification format designed to maximize the use of imagery. In this layout, the background image spans the entire surface area of the notification, creating an edge-to-edge visual experience. All accompanying text such as the title, message, and call-to-action is seamlessly overlaid on top of the image, ensuring the message is prominent while maintaining a clean, modern aesthetic.

    The library falls back to the Advanced Template if the image cannot be downloaded.

    Text over Image Push Template

    Text over Image Push Template

    Template Keys

    Text over Image Template KeysRequiredDescription
    pt_idRequiredIndicates the type of template, for example, pt_zero_bezel.
    pt_titleRequiredMaps to the campaign title, the main headline of your notification must be concise and attention-grabbing, defining the exact purpose of your campaign.
    pt_msgRequiredMaps to the campaign message, the body text of your notification. The message should clearly convey the purpose of your campaign.
    pt_msg_summaryOptionalMessage line when Notification is expanded.
    pt_subtitleOptionalSubtitle
    pt_big_imgRequiredImage
    pt_small_viewOptionalSelect text-only small view layout (text_only)
    pt_dl1OptionalDeep Link
    pt_title_clrOptionalTitle Color in HEX
    pt_title_clr_darkOptionalTitle Color in HEX in dark mode
    pt_msg_clrOptionalMessage Color in HEX
    pt_msg_clr_darkOptionalMessage Color in HEX in dark mode
    pt_small_icon_clrOptionalSmall Icon Color in HEX
    pt_small_icon_clr_darkOptionalSmall Icon Color in HEX
    pt_scale_typeOptionalSpecify the image scaling type for notifications. Available values:
  • fit_center
  • center_crop

  • For more information on how it works, refer to Image Scaling.
    pt_icoOptionalLarge Icon
    pt_jsonOptionalAbove keys in JSON format

    Rating Template

    Rating template lets your users give you feedback. This feedback is captured in the event Rating Submitted within the property wzrk_c2a.

    624

    Rating Template

    Template Keys

    Rating Template KeysRequiredDescription
    pt_idRequiredValue - pt_rating
    pt_titleRequiredTitle
    pt_msgRequiredMessage
    pt_default_dlRequiredDefault Deep Link for Push Notification
    pt_dl1RequiredDeep Link for first/all star(s)
    pt_bgRequiredBackground Color in HEX
    pt_bg_darkRequiredBackground Color in HEX in dark mode
    pt_msg_summaryOptionalMessage line when Notification is expanded
    pt_subtitleOptionalSubtitle
    pt_dl2OptionalDeep Link for second star
    pt_dl3OptionalDeep Link for third star
    pt_dl4OptionalDeep Link for fourth star
    pt_dl5OptionalDeep Link for fifth star
    pt_icoOptionalLarge Icon
    pt_title_clrOptionalTitle Color in HEX
    pt_title_clr_darkOptionalTitle Color in HEX in dark mode.
    pt_msg_clrOptionalMessage Color in HEX
    pt_msg_clr_darkOptionalMessage Color in HEX in dark mode
    pt_small_icon_clrOptionalSmall Icon Color in HEX
    pt_small_icon_clr_darkOptionalSmall Icon Color in HEX in dark mode
    pt_scale_typeOptionalSpecify the image scaling type for notifications. Available values:
  • fit_center
  • center_crop

  • For more information on how it works, refer to Image Scaling.
    pt_jsonOptionalAbove keys in JSON format
    pt_big_imgOptionalImage

    Product Catalog Template

    The product catalog template lets you showcase different product images (or a product catalog) before the user can click on the BUY NOW option, which can take them directly to the product via deep links. This template has two variants.

    Vertical View

    624

    Product Catalog Template-Vertical View

    Linear View

    Use the following keys to enable the linear view variant of this template:

    Template KeyRequiredValue
    pt_product_display_linearOptionaltrue
    624

    Product Catalog Template-Linear View

    Template Keys

    Product Catalog Template KeysRequiredDescription
    pt_idRequiredValue - pt_product_display
    pt_msgRequiredMessage
    pt_titleRequiredTitle
    pt_img1RequiredImage One
    pt_img2RequiredImage Two
    pt_img3RequiredImage Three
    pt_bt1RequiredBig text for first image
    pt_bt2RequiredBig text for second image
    pt_bt3RequiredBig text for third image
    pt_st2RequiredSmall text for second image
    pt_st1RequiredSmall text for first image
    pt_st3RequiredSmall text for third image
    pt_dl1RequiredDeep Link for first image
    pt_dl2RequiredDeep Link for second image
    pt_dl3RequiredDeep Link for third image
    pt_price1RequiredPrice for first image
    pt_price2RequiredPrice for second image
    pt_price3RequiredPrice for third image
    pt_bgRequiredBackground Color in HEX
    pt_bg_darkRequiredBackground Color in HEX in dark mode
    pt_product_display_actionRequiredAction Button Label Text
    pt_product_display_action_clrRequiredAction Button Background Color in HEX
    pt_subtitleOptionalSubtitle
    pt_product_display_linearOptionalLinear Layout Template ("true"/"false")
    pt_title_clrOptionalTitle Color in HEX
    pt_title_clr_darkOptionalTitle Color in HEX in dark mode.
    pt_msg_clrOptionalMessage Color in HEX
    pt_msg_clr_darkOptionalMessage Color in HEX in dark mode
    pt_small_icon_clrOptionalSmall Icon Color in HEX
    pt_small_icon_clr_darkOptionalSmall Icon Color in HEX in dark mode
    pt_scale_typeOptionalSpecify the image scaling type for notifications. Available values:
  • fit_center
  • center_crop

  • For more information on how it works, refer to Image Scaling.
    pt_jsonOptionalAbove keys in JSON format

    Input Box Template

    The Input Box Template lets you collect any input, including feedback from your users. It has four variants.

    With CTAs

    The CTA variant of the Input Box Template uses action buttons on the notification to collect input from the user.

    To set the CTAs, use the Advanced Options when setting up the campaign on the dashboard.

    618

    Input Box Template-With CTAs

    Template KeyRequiredValue
    pt_dismiss_on_clickOptionaltrue (Dismisses the notification without opening the app).

    πŸ“˜

    Display the Notification in the tray (for Android 12 and above)

    To keep the notification in the notification tray even after clicking the CTA, set the value for the pt_dismiss_on_click payload key as false and add the dismissNotification function to your code.

    Following is a sample code for adding the dismissNotification function:

    fun dismissNotification(intent: Intent?, applicationContext: Context){
            intent?.extras?.apply {
                var autoCancel = true
                var notificationId = -1
    
                getString("actionId")?.let {
                    Log.d("ACTION_ID", it)
                    autoCancel = getBoolean("autoCancel", true)
                    notificationId = getInt("notificationId", -1)
                }
                /**
                 * If using InputBox template, add ptDismissOnClick flag to not dismiss notification
                 * if pt_dismiss_on_click is false in InputBox template payload. Alternatively if normal
                 * notification is raised then we dismiss notification.
                 */
                val ptDismissOnClick = intent.extras!!.getString(PTConstants.PT_DISMISS_ON_CLICK,"")
    
                if (autoCancel && notificationId > -1 && ptDismissOnClick.isNullOrEmpty()) {
                    val notifyMgr: NotificationManager =
                        applicationContext.getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager
                    notifyMgr.cancel(notificationId)
                }
            }
        }
    

    CTAs with Remind Later option

    This variant of the Input Box Template is advantageous if the user wants to be reminded of the notification after some time. Clicking on the remind later button raises an event to the user profiles, with a custom user property p2, whose value is a future timestamp. You can have a campaign running on the dashboard that will send a reminder notification at the timestamp in the event property.

    Ensure to set one of the CTAs as a Remind Later button. Set the action ID to remind from the dashboard.

    Template KeyRequiredValue
    pt_event_nameRequiredFor example: Remind Later,
    pt_event_property_<property_name_1>OptionalFor example: <property_value>,
    pt_event_property_<property_name_2>Optionalfuture epoch timestamp. For example: \$D_1592503813
    pt_dismiss_on_clickRequiredValue should be true. It dismisses the notification without opening the app and raises a required event to the user profile, needed to send a reminder notification.
    618

    Input Box Template-CTAs with Remind Later option

    Reply as an Event

    This variant raises an event capturing the user's input as an event property. The app is not opened after the user sends the reply.

    To use this variant, use the following values for the keys.

    Template KeyRequiredValue
    pt_input_labelRequiredfor e.g., Search
    pt_input_feedbackRequiredfor e.g., Thanks for your feedback
    pt_event_nameRequiredfor e.g. Searched,
    pt_event_property_<property_name_2>Requiredfixed value - pt_input_reply
    pt_event_property_<property_name_1>Optionalfor e.g. <property_value>,
    618

    Input Box Template-Reply as an Event

    Reply as an Intent

    This variant passes the reply to the app as an Intent. The app can then process the reply and take appropriate actions.

    To use this variant, use the following values for the keys.

    Template KeyRequiredValue
    pt_input_labelRequiredfor e.g., Search
    pt_input_feedbackRequiredfor e.g., Thanks for your feedback
    pt_input_auto_openRequiredfixed value - true

    To capture the input, the app can get the pt_input_reply key from the Intent extras.

    618

    Input Box Template-Reply as an Intent

    Template Keys

    Input Box Template KeysRequiredDescription
    pt_idRequiredValue - pt_input
    pt_titleRequiredTitle
    pt_msgRequiredMessage
    pt_big_imgRequiredImage
    pt_input_labelRequiredLabel text to be shown on the input
    pt_input_feedbackRequiredFeedback
    pt_dl1RequiredDeep Link
    pt_msg_summaryOptionalMessage line when Notification is expanded
    pt_subtitleOptionalSubtitle
    pt_big_img_altOptionalImage to be shown after feedback is collected
    pt_event_nameOptionalName of Event to be raised
    pt_event_property_<property_name_1>OptionalValue for event property <property_name_1>
    pt_event_property_<property_name_2>OptionalValue for event property <property_name_2>
    pt_event_property_<property_name_n>OptionalValue for event property <property_name_n>
    pt_input_auto_openOptionalAuto open the app after feedback
    pt_title_clrOptionalTitle Color in HEX
    pt_title_clr_darkOptionalTitle Color in HEX in dark mode.
    pt_msg_clrOptionalMessage Color in HEX
    pt_msg_clr_darkOptionalMessage Color in HEX in dark mode
    pt_small_icon_clrOptionalSmall Icon Color in HEX
    pt_small_icon_clr_darkOptionalSmall Icon Color in HEX in dark mode
    pt_icoOptionalLarge Icon
    pt_dismiss_on_clickOptionalDismiss notification on click
    pt_jsonOptionalAbove keys in JSON format

    Template Variations

    Users can preview and render different variations of outputs for each Push template type based on the following factors:

    • Version-based Output: Notifications render differently for Android version 12 and above and version 11 and below. Key considerations include the following:
      • Android 13 and above: Use images no larger than 450x450 px for optimal rendering.
      • Android 12 and above: Center-align any text within images is centered for to ensure better visibility.
      • Android 11 and 12: Use image file size below 100 KB to prevent rendering issues.
      • Android 11 and below: Use images of under 3 MB or lower is recommended for better to maintain optimal performance.
    • CTA-based Output: Notification renders based on whether CTA buttons are included in the payload.

    Dark Mode

    Push templates automatically adapt to the device's theme settings, rendering notifications in dark or light mode.

    Theme SettingNotification AppearanceSample Output
    Dark mode enabledNotification renders with a dark background
    Dark mode disabledNotification renders with a light background.

    πŸ“˜

    Custom Color Definitions

    Templates support custom color definitions that adapt to both themes for visual consistency.

    🚧

    SDK Version Requirement

    To use the Dark mode feature, ensure you are using Push Templates SDK version 2.0.0 and above.

    Image Scaling

    Android supports various image scaling options to control how images appear in push notifications. CleverTap optimizes image rendering to maintain visual consistency across devices while leveraging Android native scaling behavior. To handle scaling in a Push template, you must add the key pt_scale_type key and the value is set as fit_center or center_crop based on the requirement.

    The following table lists the different scaling settings in Push templates:

    Image Scaling TypeDescriptionSample Output
    Keep OriginalApplies to all expanded images in Android push templates.

    The image is scaled proportionally (maintaining the aspect ratio) to ensure that both its width and height fit within the boundaries of the image container. This ensures the entire image is visible without any cropping.
    Scale to FillApplies to all expanded images in all Android push templates.

    The image is resized uniformly while preserving the aspect ratio. If necessary, it is scaled down so that both width and height fit within the image container. This ensures the full image is displayed without any part being cropped.

    🚧

    SDK Version Requirement

    To use the Image scaling feature, ensure you are using Push Templates SDK version 2.0.0 and above.

    Image Specifications

    The following are the image specifications and guidelines for the Push Templates:

    TemplateAspect Ratios (Approx.)Maximum File Size
    (OS version 12 and above)
    Standard
  • OS version 12 and above: 3:2
  • OS version 11 and below: 5:3
  • Advanced
  • OS version 12 and above: 3:2
  • OS version 11 and below: 5:3
  • 500 KB
    Auto Carousel
  • OS version 12 and above: 3:2
  • OS version 11 and below: 5:3
  • 86 KB
    Manual Carousel
  • OS version 12 and above: 3:2
  • OS version 11 and below: 5:3
  • 86 KB
    Five Icon
  • OS version 12 and above: 1:1
  • OS version 11 and below: 1:1
  • 50 KB
    Text over Image
  • OS version 12 and above: 1:1
  • OS version 11 and below: 2:1
  • 500 KB
    Timer
  • OS version 12 and above: 3:2
  • OS version 11 and below: 5:3
  • 326 KB

    Image Guidelines

    Ensure images for the following templates meet the specified size guidelines:

    Template NameRecommended Resolution
    Auto Carousel Template400 x 300 px
    Manual Carousel Template240 x 180 px
    Five Icon Template300 x 300 px

    For Text over Image Template, ensure the text is center-aligned within the image for devices running OS version 12 and above.

    FAQs

    For FAQs, refer to Push Templates FAQs.