Reputation: 91
I am a beginner in concerns of React Native. I set up a react-native project via
react-native init projectname
I got this working on my android studio emulator. Now I want to run it inside my Expo-App. But always when I run npm start
inside my app project folder it loads just this: CMD Output
How can I manage to open my project inside the Expo-App? (Is it even possible?)
Best Whishes Robert
Upvotes: 0
Views: 983
Reputation: 1062
There are no tools to convert a "vanilla" react-native project to Expo.
According to the docs:
Right now, the easiest way to do this is to use expo init (with Expo CLI) to make a new project, and then copy over all your JavaScript source code from your existing project, and then yarn adding the library dependencies you have.
Upvotes: 1