When I try to execute the command "eas build --platform android" I encounter the following error message: "✖ Build failed
🤖 Android build failed: Gradle build failed with an unknown error. Check the logs for more information on the "Run gradlew" phase."
Additionally, when running "expo doctor," I receive the message stating: "Expected package @expo/config-plugins@^5.0.0 Found invalid: @expo/[email protected] (For further details, run: npm why @expo/config-plugins)"
I am unsure of how to update the @expo/config-plugins package.
Here is my Eas configuration file:
{
"cli": {
"version": ">= 2.2.1"
},
"build": {
"development": {
"developmentClient": true,
"distribution": "internal",
"android": {
"gradleCommand": ":app:assembleDebug"
},
"ios": {
"buildConfiguration": "Debug"
}
},
"preview": {
"extends": "production",
"distribution": "internal",
},
"production": {
"node": "16.13.0",
}
},
"submit": {
"production": {}
}
}