EAS Build fail since I've installed react-native-analytics

Since I’ve installed “react-native-analytics” and followed all the instructions from doc to install and initialed the app, my build fail at FastLane step :

app.config.json

export default () => ({
    name: appName,
   .
   .
   .
    ios: {
        googleServicesFile: process.env.GOOGLE_SERVICE_INFO_PLIST,
        .
        .
        .
    },
    android: {
        googleServicesFile: process.env.GOOGLE_SERVICE_JSON,
        .
        .
        .
    "web": {...},
    sdkVersion: "46.0.0",
    "plugins": [
        "@react-native-firebase/app",
        [
            "expo-build-properties",
            {
                "ios": {
                    "useFrameworks": "static"
                }
            }
        ]
    ],
    .
    .
    .
});

app.json :

  "name": "my-app",
  "version": "1.0.0",
  "main": "node_modules/expo/AppEntry.js",
  "scripts": {
    "start": "expo start --clear",
    "dev": "APP_ENV=development npx expo start --dev-client",
    "build:dev": "APP_ENV=development eas build --profile development",
    "build:staging": "APP_ENV=staging eas build --profile staging",
    "update:staging": "APP_ENV=staging eas update --branch staging",
    "android": "expo start --android",
    "ios": "expo start --ios",
    "web": "expo start --web",
    "postinstall": "patch-package"
  },
  "dependencies": {
    "@expo/react-native-action-sheet": "^3.14.0",
    "@react-native-async-storage/async-storage": "~1.17.3",
    "@react-native-community/datetimepicker": "6.2.0",
    "@react-native-community/masked-view": "^0.1.11",
    "@react-native-firebase/analytics": "15.4.0",
    "@react-native-firebase/app": "15.4.0",
    "@react-navigation/bottom-tabs": "^6.4.0",
    "@react-navigation/material-bottom-tabs": "^6.2.4",
    "@react-navigation/material-top-tabs": "^6.3.0",
    "@react-navigation/native": "^6.0.13",
    "@react-navigation/native-stack": "^6.9.1",
    "@react-navigation/stack": "^6.3.2",
    "@reduxjs/toolkit": "^1.8.6",
    "axios": "^1.1.3",
    "deprecated-react-native-prop-types": "^4.0.0",
    "expo": "~46.0.16",
    "expo-build-properties": "~0.3.0",
    "expo-calendar": "~10.3.0",
    "expo-clipboard": "~3.1.0",
    "expo-constants": "~13.2.4",
    "expo-dev-client": "~1.3.1",
    "expo-device": "~4.3.0",
    "expo-image-picker": "~13.3.1",
    "expo-intent-launcher": "~10.3.0",
    "expo-linear-gradient": "~11.4.0",
    "expo-localization": "~13.1.0",
    "expo-location": "~14.3.0",
    "expo-skeleton-loader": "^1.1.3",
    "expo-splash-screen": "~0.16.2",
    "expo-status-bar": "~1.4.0",
    "expo-updates": "~0.14.6",
    "formik": "^2.2.9",
    "imagekit-javascript": "1.3.7",
    "lottie-react-native": "5.1.3",
    "moment": "^2.29.4",
    "patch-package": "^6.5.0",
    "react": "18.0.0",
    "react-i18next": "^11.18.6",
    "react-native": "0.69.6",
    "react-native-actions-sheet": "^0.8.8",
    "react-native-calendars": "1.1248.0",
    "react-native-collapsible-tab-view": "^5.0.0-rc.13",
    "react-native-gesture-handler": "~2.5.0",
    "react-native-google-places-autocomplete": "^2.4.1",
    "react-native-hyperlink": "^0.0.22",
    "react-native-map-clustering": "^3.4.2",
    "react-native-map-link": "^2.10.2",
    "react-native-maps": "0.31.1",
    "react-native-modal": "^13.0.1",
    "react-native-pager-view": "5.4.24",
    "react-native-paper": "^4.12.5",
    "react-native-reanimated": "~2.9.1",
    "react-native-safe-area-context": "4.3.1",
    "react-native-screens": "~3.15.0",
    "react-native-shared-element": "^0.8.4",
    "react-native-svg": "12.3.0",
    "react-native-svg-transformer": "^1.0.0",
    "react-native-tab-view": "^3.3.0",
    "react-native-toast-message": "^2.1.5",
    "react-native-vector-icons": "^9.2.0",
    "react-redux": "^8.0.4",
    "yup": "^0.32.11"
  },
  "devDependencies": {
    "@babel/core": "^7.12.9",
    "babel-plugin-transform-inline-environment-variables": "^0.4.4"
  },
  "private": true
}