Expo App icon is not updating SDK 49

My application icon does not change, it remains the default, it has a proportion of 1024x1024, I do not have the android and ios folders

note: SDK 49

app.json

{
  "name": "---",
  "displayName": "---",
  "expo": {
    "name": "---",
    "scheme": "---",
    "slug": "---",
    "privacy": "unlisted",
    "version": "1.0.0",
    "orientation": "portrait",
    "icon": "./assets/appStoreIcon.png",
    "userInterfaceStyle": "light",
    "platforms": [
      "ios",
      "android"
    ],
    "splash": {
      "image": "./assets/splashscreen.png",
      "resizeMode": "contain",
      "backgroundColor": "#ffffff"
    },
    "assetBundlePatterns": [
      "**/*"
    ],
    "ios": {
      "buildNumber": "2",
      "bundleIdentifier": "---",
      "splash": {
        "backgroundColor": "#F1F2F3",
        "image": "./assets/splashscreen.png",
        "resizeMode": "contain"
      },
      "supportsTablet": true,
      "googleServicesFile": "./GoogleService-Info.plist"
    },
    "android": {
      "package": "---",
      "splash": {
        "mdpi": "./assets/splashscreen.png",
        "hdpi": "./assets/splashscreen.png",
        "xhdpi": "./assets/splashscreen.png",
        "xxhdpi": "./assets/splashscreen.png",
        "xxxhdpi": "./assets/splashscreen.png",
        "resizeMode": "cover"
      }
    },
    "web": {
      "favicon": "./assets/favicon.png"
    },
    "extra": {
      "eas": {
        "projectId": "---"
      }
    },
    "owner": "---",
    "runtimeVersion": {
      "policy": "sdkVersion"
    },
    "updates": {
      "url": "---"
    },
    "plugins": [
      [
        "expo-build-properties",
        {
          "ios": {
            "useFrameworks": "static"
          }
        }
      ],
      [
        "expo-image-picker",
        {
          "photosPermission": "The app accesses your photos to let you share them with your friends."
        }
      ],
      [
        "expo-barcode-scanner",
        {
          "cameraPermission": "Allow $(PRODUCT_NAME) to access your camera"
        }
      ],
      "expo-router"
    ]
  }
}

image

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