EAS Android internal build - Gradle fail

I only created .android file using expo prebuild because I am trying to add key store file and credentials manually and after adding I used eas build -platform android to get a signed abb.file to upgrade the previous version of the app. but encounters this error while building in Expo Application

same error as @matkobiely

what should I do , I want to manually add key store details to build.gradle and gradle.properties so thats why I am implementing this way
my pacakage.json
{
“name”: “fmsonboarding”,
“version”: “1.0.0”,
“scripts”: {
“start”: “expo start --dev-client”,
“android”: “expo run:android”,
“ios”: “expo run:ios”,
“web”: “expo start --web”,
“test”: “jest”
},
“jest”: {
“preset”: “jest-expo”,
“transformIgnorePatterns”: [
“node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.|@expo-google-fonts/.|react-navigation|@react-navigation/.|@unimodules/.|unimodules|sentry-expo|native-base|react-native-svg)”
]
},
“dependencies”: {
@expo-google-fonts/open-sans”: “^0.2.3”,
@expo/config-plugins”: “~6.0.0”,
@expo/metro-config”: “^0.10.7”,
@expo/webpack-config”: “18.1.2”,
@react-native-async-storage/async-storage”: “1.17.11”,
@react-navigation/bottom-tabs”: “^6.5.8”,
@react-navigation/native”: “^6.1.7”,
@react-navigation/native-stack”: “^6.9.13”,
“axios”: “^1.4.0”,
“expo”: “48.0.17”,
“expo-auth-session”: “~4.0.3”,
“expo-build-properties”: “~0.6.0”,
“expo-camera”: “~13.2.1”,
“expo-dev-client”: “~2.2.1”,
“expo-document-picker”: “~11.2.2”,
“expo-file-system”: “~15.2.2”,
“expo-image-manipulator”: “~11.1.1”,
“expo-image-picker”: “~14.1.1”,
“expo-intent-launcher”: “~10.5.2”,
“expo-random”: “~13.1.1”,
“expo-splash-screen”: “~0.18.2”,
“expo-status-bar”: “~1.4.4”,
“expo-system-ui”: “~2.2.1”,
“expo-updates”: “~0.16.4”,
“expo-web-browser”: “~12.1.1”,
“formik”: “^2.4.3”,
“i18n-js”: “^4.3.0”,
“i18next”: “^23.5.1”,
“jspdf”: “^2.5.1”,
“moment”: “^2.29.4”,
“moment-timezone”: “^0.5.43”,
“react”: “18.2.0”,
“react-dom”: “18.2.0”,
“react-i18next”: “^13.2.2”,
“react-native”: “0.71.8”,
“react-native-document-scanner-plugin”: “^0.9.0”,
“react-native-keyboard-aware-scroll-view”: “^0.9.5”,
“react-native-mask-input”: “^1.2.3”,
“react-native-modal”: “^13.0.1”,
“react-native-paper”: “^5.10.4”,
“react-native-pie-chart”: “^3.0.1”,
“react-native-progress”: “^5.0.0”,
“react-native-reanimated”: “~2.14.4”,
“react-native-safe-area-context”: “4.5.0”,
“react-native-screens”: “~3.20.0”,
“react-native-select-dropdown”: “^3.4.0”,
“react-native-svg”: “13.4.0”,
“react-native-web”: “^0.18.10”,
“react-native-webview”: “11.26.0”,
“yup”: “^1.2.0”,
“zustand”: “^4.4.1”
},
“devDependencies”: {
@babel/core”: “^7.22.11”,
@types/babel__core”: “^7.20.1”,
@types/jest”: “^29.5.4”,
@types/react”: “~18.0.27”,
@types/react-native”: “^0.72.2”,
@types/react-native-modal-dropdown”: “^1.0.1”,
@types/react-test-renderer”: “^18.0.0”,
“jest”: “^29.6.4”,
“jest-expo”: “^49.0.0”,
“pretty-format”: “^29.6.3”,
“react-test-renderer”: “18.2.0”,
“typescript”: “^4.9.4”
},
“private”: true,
“homepage”: “/”
}
help me to resolve this ?