help : Standalone build failed!

I don’t understand the reason for the error, please help me solve it
app.json:
{
“expo”: {
“name”: “DoneWhithIt”,
“slug”: “DoneWhithIt”,
“android”: {
“package”: “com.igs.DoneWhithIt”,
“versionCode”: 1
},
“ios”: {
“bundleIdentifier”: “com.igs.DoneWhithIt”,
“buildNumber”: “1.0.0”
},
“version”: “1.0.0”,
“orientation”: “portrait”,
“icon”: “./app/assets/icon.png”,
“splash”: {
“image”: “./app/assets/splash.png”,
“resizeMode”: “contain”,
“backgroundColor”: “#ffffff
},
“updates”: {
“fallbackToCacheTimeout”: 0
},
“assetBundlePatterns”: [“**/*”],
“web”: {
“favicon”: “./app/assets/favicon.png”
},
“description”: “marché pour vendre des choses dont vous n’avez pas besoins .”
}
}

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”
},
“dependencies”: {
@react-native-community/hooks”: “^2.6.0”,
“expo”: “~38.0.8”,
“expo-status-bar”: “^1.0.0”,
“react”: “~16.11.0”,
“react-dom”: “~16.11.0”,
“react-native”: “https://github.com/expo/react-native/archive/sdk-38.0.2.tar.gz”,
“react-native-web”: “~0.11.7”,
“expo-constants”: “~9.1.1”
},
“devDependencies”: {
@babel/core”: “^7.8.6”,
“babel-preset-expo”: “~8.1.0”
},
“private”: true
}

Build logs are quite clear about a problem, you specified invalid credentials.

[stderr] > A failure occurred while executing com.android.build.gradle.internal.tasks.Workers$ActionFacade
[stderr]    > com.android.ide.common.signing.KeytoolException: Failed to 
read key [REDACTED] from store "/tmp/turtle/keystore-4eb39cc5-ac2e-490c-8ea9-efb8a9eda6fe.jks": 
No key with alias '[REDACTED]' found in keystore
/tmp/turtle/keystore-4eb39cc5-ac2e-490c-8ea9-efb8a9eda6fe.jks

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