Why is development build showing after ejection? (Android)

Please provide the following:

  1. SDK Version: 45.0
  2. Platforms(Android/iOS/web/all): Android

I ejected my app then ran the project with Android Studio, and it install and opens an expo dev client. I just want it to run the app with bare React Native. Any tips?

you can uninstall expo-dev-client if you don’t want to use it. “eject” is not a word we use anymore because it doesn’t make much sense - we call this command “prebuild” now because it takes your project and generates the matching native project. so if you have expo-dev-client installed, then it is included in the native project. if you’d like to test a release build without uninstalling expo-dev-client, run expo run:android --variant release

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