Aurélien Tronc
Aurélien Tronc

Reputation: 49

React-native project on expo then on Android Studio

I don't understand the transition from Expo project to Android Studio. I ejected my react-native app using expo and now im trying to run it on Android-Studio.

Do i still code in Javascript after the eject ? What are the files in new Android folder corresponding to the Components i created in my expo project ?

Upvotes: 1

Views: 1177

Answers (1)

hong developer
hong developer

Reputation: 13926

When you do an expo eject, you need to be able to manage Android and iOS manually.

Unlike react-native in the Android folder, there is an additional expo-package.

The usage is the same as the old react-native.

Just fill out the JavaScript code as you used to.

The difference is that the 'react-native' module is available. Modules requiring react-native link

this link is about react-native link

You can make your own module and apply it.

this link is about react-native create module

Upvotes: 1

Related Questions