Home > Back-end >  How to open an Expo React Native project in Xcode in order to create a build
How to open an Expo React Native project in Xcode in order to create a build

Time:06-25

I have an expo react native app's project and xcode simply denies to open it. I looked up for the solutions on internet but it says it can be done through podfile but there is no such file or ios folder in an expo react native project. How can I open it in xcode

CodePudding user response:

If you dont have the ios and android folders then it sounds you have a managed work flow expo project. This is a react native project where all the code you write is pure javascript and all of the native side code is managed by expo. If this is what you want then you just need to use expo build tools. If you must build with xcode then eject your project and open the ios folder in xcode and build from there

  • Related