Problem build app

i finished making my app where i used Realm for the first time, i used to test it in testing with Expo-dev-client. later i ran the build with expo build to get apk and test it, but everytime i open the app and i get stuck in the splash. how do i solve? I tried using eas build too but it only creates the .aap file for me, and I can’t test it, can you help me solve it, thanks. i need or make apk with eas build if possible or fix splash problem. I use the latest version of react native and Expo SDK 44

Hi @cerz01

You will need to build with eas build instead of the old expo build.

If you want an APK, build with the “preview” profile, like this:

eas build -p android --profile preview

When you’re ready to submit it to the Play Store, build a .aab file with the “production” profile, like this:

eas build -p android --profile production
1 Like

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