Expo push notifications still with Expo info header (icon and title).

  1. SDK Version: 34.0.1
  2. Platforms(Android/iOS/web/all): Android

Push notifications are working fine but I’ve built a stand-alone app and still show the Expo icon and ‘Expo’ title at the top of the notification window.

This is how my app.json looks like:

{
  "expo": {
    "name": "Grupo UMIR",
    "slug": "mobile",
    "privacy": "public",
    "sdkVersion": "34.0.0",
    "platforms": [
      "ios",
      "android",
      "web"
    ],
    "version": "1.0.0",
    "orientation": "portrait",
    "icon": "./assets/images/icon.png",
    "splash": {
      "image": "./assets/images/splash.png",
      "resizeMode": "contain",
      "backgroundColor": "#ffffff"
    },
    "updates": {
      "fallbackToCacheTimeout": 0
    },
    "assetBundlePatterns": [
      "**/*"
    ],
    "notification": {
      "icon": "./assets/images/icon.png"
    },
    "ios": {
      "supportsTablet": true
    },
    "android": {
      "package": "com.surhive.medicalAppointment",
      "googleServicesFile": "./google-services.json"
    }
  }
}

I would like to see my App icon and my app title instead of Expo’s.

Hello @bohmaster,
I had the same issue but as I read the documentation about app.json I found out that you have to add the following lines to your app.json in order to see your app icon when receiving a push notification.

"notification": {
    "icon": "./assets/images/icon.png"
}

Cheers

If you look at my comment I’ve already done it. It’s correct?

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.