skip to Main Content

I need some help, I’m in a React Native project with Expo, the build is always done using expo, but the last builds we made for Android made the system strange with some bugs and slowness, I wanted to do a test to verify if the problem is the build that expo performs, then I tried to build using React Native-cli and a gradlew version error appears, the question is: can I build using React Native cli in a project with expo?

2

Answers


  1. Chosen as BEST ANSWER

    I will need to test by removing the expo from the project, how could I do to remove the expo from the project?


  2. Theoretically, you can build your project with the React Native CLI by removing the Expo-managed workflow and all Expo dependencies from your project. However, this process can be complex and time-consuming. Therefore, I wouldn’t recommend doing it solely to test if the issue is related to Expo builds. Instead, consider ejecting from Expo if you intend to fully transition away from Expo and its managed workflow.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search