Eas build IOS is always getting this error (Font server protocol version mismatch (expected:5 got:0), falling back to local fonts)

I am having an issue for the last month, whenever I am creating an EAS Build IOS I am facing this error always.

Things I have updated:

SDK 45.0 => 46.0
App.json (added)

 "bitcode": "Debug",

"plugins": [
      [
        "expo-build-properties",
        {
          "ios": {
            "deploymentTarget": "16.0"
          }
        }
      ]
    ],

PACKAGE.JSON

{
  "main": "node_modules/expo/AppEntry.js",
  "scripts": {
    "start": "expo start",
    "android": "expo start --android",
    "ios": "expo start --ios",
    "web": "expo start --web",
    "eject": "expo eject",
    "postinstall": "patch-package"
  },
  "dependencies": {
    "@config-plugins/detox": "4.0.0",
    "@expo/config-plugins": "^5.0.0",
    "@react-native-async-storage/async-storage": "~1.17.3",
    "@react-native-community/datetimepicker": "6.2.0",
    "@react-navigation/drawer": "^6.4.1",
    "@react-navigation/native": "^6.0.10",
    "@react-navigation/native-stack": "^6.6.2",
    "deprecated-react-native-prop-types": "^4.1.0",
    "expo": "^46.0.0",
    "expo-app-loading": "~2.1.0",
    "expo-build-properties": "~0.3.0",
    "expo-checkbox": "~2.2.0",
    "expo-constants": "~13.2.4",
    "expo-image-picker": "~13.3.1",
    "expo-linking": "~3.2.4",
    "expo-modules-core": "~0.11.10",
    "expo-notifications": "~0.16.1",
    "expo-permissions": "~13.2.0",
    "expo-random": "~12.3.0",
    "expo-status-bar": "~1.4.0",
    "expo-updates": "~0.14.7",
    "native-base": "^3.2.2",
    "patch-package": "^7.0.0",
    "postinstall-postinstall": "^2.1.0",
    "react": "18.0.0",
    "react-native": "0.69.6",
    "react-native-app-intro-slider": "^4.0.4",
    "react-native-calendars": "^1.1293.0",
    "react-native-dropdownalert": "^4.3.0",
    "react-native-gesture-handler": "~2.5.0",
    "react-native-google-places-autocomplete": "^2.5.1",
    "react-native-htmlview": "^0.16.0",
    "react-native-image-viewing": "^0.2.2",
    "react-native-loading-spinner-overlay": "^3.0.0",
    "react-native-maps": "0.31.1",
    "react-native-pager-view": "5.4.24",
    "react-native-range-slider-expo": "^1.4.3",
    "react-native-reanimated": "~2.9.1",
    "react-native-safe-area-context": "4.3.1",
    "react-native-screens": "~3.15.0",
    "react-native-svg": "12.3.0",
    "react-native-tab-view": "^3.1.1",
    "react-native-webview": "11.23.0",
    "reanimated-bottom-sheet": "^1.0.0-alpha.22",
    "rxjs": "^7.5.2"
  },
  "devDependencies": {
    "@babel/core": "^7.18.6",
    "@types/react": "~18.0.0",
    "@types/react-native": "~0.69.1",
    "typescript": "^4.6.3"
  },
  "private": true
}

The error i am having


I would be very grateful, if someone fix my error.