app works on expo dev client, but aab android doesn't work on my device

well, my problem is that when I execute the command ‘npx cross-env EAS_NO_VCS=1 eas build --profile development --platform android’ and then download the apk on my physical android device the app works as it should, but then I execute the command ‘npx cross-env EAS_NO_VCS=1 eas build -p android’ to generate the aab and then create the app in play console in ‘internal test’… I unleash it I loaded from the play store but the application starts with a blank screen and always closes automatically. I already tried to compile the application a few times but the same thing keeps happening.
here is my eas.json:
{
“cli”: {
“version”: “>= 3.16.0”
},
build: {
“development”: {
“developmentClient”: true,
“distribution”: “internal”
},
preview: {
“distribution”: “internal”
},
“production”: {}
},
“submit”: {
“production”: {}
}
}
If the application works in expo dev client, why doesn’t it work after the generated aab? Should I generate a signature or something like that? It is the first application that I am uploading with expo