App Icon for ios standalone gone

I am having an issue with my app icon since around christmas.
I did not change any of my assets or any code in app.json but suddenly the App Icon just did not show up with the new IPA. No error is thrown in the building process.

Edit: The project at the expo website shows the icon correctly

I tried removing the Icon and reimporting it to the assets folder but that didn’t do any difference.

Here is my app.json:

{
  "expo": {
    "name": "xxx",
    "slug": "xxx",
    "privacy": "unlisted",
    "sdkVersion": "34.0.0",
    "platforms": [
      "ios",
      "android",
      "web"
    ],
    "version": "1.0.14",
    "orientation": "portrait",
    "icon": "./assets/images/icon.png",
    "splash": {
      "image": "./assets/images/splash.png",
      "resizeMode": "contain",
      "backgroundColor": "#fff"
    },
    "updates": {
      "fallbackToCacheTimeout": 0
    },
    "assetBundlePatterns": [
       "**/*"
     ],
    "ios": {
      "supportsTablet": true,
      "bundleIdentifier": "xxx",
    },
    "android": {
      "package": "xxx",
      "versionCode": 7,
      "permissions": [
        "CAMERA",
        "READ_INTERNAL_STORAGE",
        "WRITE_INTERNAL_STORAGE",
        "READ_EXTERNAL_STORAGE",
        "WRITE_EXTERNAL_STORAGE"
      ],
    },
    "androidStatusBar": {
      "backgroundColor": "#000000"
    },
    "description": ""
  }
}

Please run expo diagnostics and paste the log that’s printed out along with your question or issue!
Expo CLI 3.11.5 environment info:
System:
OS: macOS 10.14.5
Shell: 3.2.57 - /bin/bash
Binaries:
Node: 10.17.0 - /opt/local/bin/node
Yarn: 1.19.1 - /opt/local/bin/yarn
npm: 6.13.6 - /opt/local/bin/npm
IDEs:
Android Studio: 3.5 AI-191.8026.42.35.5977832
Xcode: 11.2.1/11B500 - /usr/bin/xcodebuild
npmPackages:
expo: ^34.0.0 => 34.0.4
react: 16.8.3 => 16.8.3
react-native: https://github.com/expo/react-native/archive/sdk-34.0.0.tar.gz => 0.59.8
react-navigation: ^3.11.0 => 3.13.0
npmGlobalPackages:
expo-cli: 3.11.5

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