> ## Documentation Index
> Fetch the complete documentation index at: https://moengage-doc-2315-external-css-font-urls.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Why Is the Template Backup Content Displayed Instead of the Basic Rich Push Content?

> Fix the issue where template backup content shows instead of basic rich push content by properly configuring both template sections in MoEngage.

## Problem

When content is added to the basic rich push template, the template backup content appears instead of the basic rich push content.

<img alt="backup content.png" src="https://mintcdn.com/moengage-doc-2315-external-css-font-urls/sPQr3K-d1ig5R-he/images/moengage_9eea00.png?fit=max&auto=format&n=sPQr3K-d1ig5R-he&q=85&s=f73f982d8792e0855905adf9cd74f007" style={{ width:"44%" }} width="640" height="1429" data-path="images/moengage_9eea00.png" />

<Info>
  This issue occurs because the MoEngage rich notification dependency is not added to the app-level build.gradle file.
</Info>

## Solution

Perform the following steps:

1. In rich push notifications, the displayed content varies based on the device and its version.
2. Ensure that campaign data for rich push templates is added in the following sections :
   * **Basic details**
   * **Template Backup**
     <img src="https://mintcdn.com/moengage-doc-2315-external-css-font-urls/ItxA3yJSFH2ZIlt-/images/moengage_6a30c5.png?fit=max&auto=format&n=ItxA3yJSFH2ZIlt-&q=85&s=ce1f2477b1ded2b1e359ee67e6ca4af8" alt="basic and template.png" width="1920" height="1089" data-path="images/moengage_6a30c5.png" />
3. On the preview screen, the message title and body is updated when you modify the basic details.
   <img src="https://mintcdn.com/moengage-doc-2315-external-css-font-urls/b-969GLajbyiENBK/images/moengage_3e2ab5.png?fit=max&auto=format&n=b-969GLajbyiENBK&q=85&s=fdcdba9a73c51b4c8984259f2342ebd6" alt="basic.png" width="1920" height="1092" data-path="images/moengage_3e2ab5.png" />
4. You can customize the template backup content in the **Template Backup** section. <img alt="template.png" src="https://mintcdn.com/moengage-doc-2315-external-css-font-urls/7LqjUfWSctG2_W7k/images/moengage_ad0ad1.png?fit=max&auto=format&n=7LqjUfWSctG2_W7k&q=85&s=62304a442ebe46131d89d644172f9db9" width="1920" height="1089" data-path="images/moengage_ad0ad1.png" />
5. Make sure to add the MoEngage rich notification dependency to the app-level build.gradle file to ensure the template backup content and basic rich push content are displayed correctly.
   ```groovy Code theme={null}
   build.gradle(:app)
             
   dependencies {
       implementation(moengage.richNotification)
   }
   ```

<img src="https://mintcdn.com/moengage-doc-2315-external-css-font-urls/ZfJuHRQ5QJzmarcA/images/moengage_b5fc12.png?fit=max&auto=format&n=ZfJuHRQ5QJzmarcA&q=85&s=865a6c9033d35b91aedb36a02d239df5" alt="Template backup.png" style={{ width:"53%" }} width="640" height="1429" data-path="images/moengage_b5fc12.png" />
