Missing App Store Icon. iOS Apps must include a 1024x1024px App Store Icon in PNG format

I’m trying to deploy a newly created application with an icon 512x512px for ios and without transparency but I got this error “Missing App Store Icon. iOS Apps must include a 1024x1024px App Store Icon in PNG format.”
I also tried with a 1024x1024 icon, with and without alpha, and I got another error (something about a missing 120x120 icon).
How can I fix this issue ?
Here is my app.json

{
  "expo": {
    "name": "MyAwesomeApp",
    "slug": "my-app",
    "sdkVersion": "22.0.0",
    "version": "0.1.4",
    "primaryColor": "#ebeef3",
    "icon": "source/asset/logo.png",
    "ios": {
      "bundleIdentifier": "com.omts.my-app",
      "icon": "source/asset/logo.png",
      "buildNumber": "22"
    },
    "loading": {
      "icon": "source/asset/logo.png"
    },
    "android": {
      "icon": "source/asset/logo.png",
      "package": "com.omts.my-app",
      "versionCode": 22,
      "permissions": [
        "READ_INTERNAL_STORAGE",
        "READ_EXTERNAL_STORAGE",
        "WRITE_EXTERNAL_STORAGE"
      ]
    },
    "notification": {
      "icon": "./source/asset/notification.png"
    }
  }
}
1 Like

Hi, if you’re using exp build to create your build, we recently fixed an issue related to this and you should try building again.