EAS build APK error after install

Hello,

I’m new to EAS and tried my first eas build today.
I have an expo managed project and I have no problem executing my project on my emulator or device after an expo build.
But when I execute this command on EAS :

eas build -p android --profile development

I have no problem executing the build, on my expo page, I can see the build finished.
But when I install the APK generated on my device I got this error :

I don’t know if i forgot something in my configuration.
The error mention react-native start, in my package.json all my command use expo like this :

“scripts”: {
“eas-build-pre-install”: “echo $MAPS_ANDROID_API_KEY $MAPS_IOS_API_KEY $APP_BASE_URL $RECAPTCHA_API_KEY”,
“start”: “expo start”,
“android:emulator”: “expo start --android”,
“android:device”: “expo start --localhost --android”,
“android:device:tunnel”: “expo start --tunnel --android”,
“android:device:lan”: “expo start --lan --android”,
“ios”: “expo start --ios”,
“android”: “expo start --android”,
“web”: “expo start --web”,
“eject”: “expo eject”,
},

But I saw that eas build command will change all the expo command by react-native command.

So If someone have an idea and can help me ?

Thanks

if you use a development profile it does a debug build. this only really makes sense if you have expo-dev-client installed. otherwise, you should do a release build. delete "developmentClient": true from your development profile if you’re not using it.

development clients: Introduction - Expo Documentation

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