0
votes

After I use: react-native init test in the folder there is only index.js file and not the index.android.js, index.ios.js files and I don't know why.

2

2 Answers

0
votes

That is how it is supposed to be. If you are looking for the files that you need to import into Xcode and its Android analog, they are located in the ios and android folders respectively. For Xcode you need test.xcodeproj.

0
votes

After this update, new projects only have a single entry point, index.js, instead of index.android.js and index.ios.js.