'Expo publish Error ' should NOT have additional property 'expo'

how can i resolve this issue, Error: Problem validating fields in app.json. Learn more: https://docs.expo.dev/workflow/configuration/ • should NOT have additional property 'expo'.

this is my app.json

{
  "expo": {
    "name": "MMS",
    "slug": "MMS",
    "version": "1.0.1",
    "orientation": "portrait",
    "icon": "./assets/logocBig.png",
    "splash": {
      "image": "./assets/logocBig.png",
      "resizeMode": "contain",
      "backgroundColor": "#ffffff"
    },
    "updates": {
      "fallbackToCacheTimeout": 0
    },
    "assetBundlePatterns": [
      "**/*"
    ],
    "ios": {
      "supportsTablet": true,
      "bundleIdentifier": "MMS"
    },
    "android": {
      "adaptiveIcon": {
        "foregroundImage": "./assets/logocBig.png",
        "backgroundColor": "#FFFFFF"
      }
    },
    "web": {
      "favicon": "./assets/favicon.png"
    },
    "expo": {
      "userInterfaceStyle": "automatic"
    },
    "description": "MMS"
  }
}


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source