Reactjs – React Native project do not have index.ios.js or index.android.js

react-nativereactjs

Hi I am newbie for React Native.
I followed below link to build my first project but found there is no index.ios.js or index.android.js for me to edit:

https://facebook.github.io/react-native/docs/getting-started.html

Only App.js is created,
May I know how can I edit for ios and android separately?
Thanks!

Best Answer

For the latest version of React native(0.49.3), it seems that the "index.android.js" and "index.ios.js" separate entry routes are no longer supported. The developer documentation suggests we use the App.js and only change parts of platform specific code by importing {Platform} from react-native package if needed.

Developer documentation