App logo not changing in IOS build.

Please provide the following:

  1. SDK Version:43.0.2
  2. Platforms(Android/iOS/web/all):IOS
  3. Add the appropriate “Tag” based on what Expo library you have a question on.

I am facing an unusual issue where I am trying to change my app icon and it works perfectly for android build, ios emulator build but when I push my IOS build i.e., .ipa file, it shows the default icon of expo in my transporter app and on apple store connect as well.

{
  "expo": {
    "name": "App Name",
    "slug": "Slug Name",
    "version": "1.0.0",
    "orientation": "portrait",
    "icon": "./assets/icon.png",
    "splash": {
      "image": "./assets/splash.png",
      "resizeMode": "contain",
      "backgroundColor": "#ffffff"
    },
    "updates": {
      "fallbackToCacheTimeout": 0
    },
    "assetBundlePatterns": [
      "**/*"
    ],
    "ios": {
      "supportsTablet": true,
      "bundleIdentifier": "com.something.developer"
    },
    "android": {
      "adaptiveIcon": {
        "foregroundImage": "./assets/adaptive-icon.png",
        "backgroundColor": "#FFFFFF"
      }
    },
    "web": {
      "favicon": "./assets/favicon.png"
    }
  }
}

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