I have been struggling to start new react-native project with react-native 0.49 onwards, since they default to App.js not index.android.js or index.ios.js then giving me error "can not find entry file index.android.js" or even when i run in ios simulator gives "can not find entry file index.ios.js" but when i run project without linking and using react-native-navigation it works.
Steps to Reproduce.
{
"name": "navigationtest",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
},
"dependencies": {
"react": "16.0.0",
"react-native": "0.50.3",
"react-native-navigation": "^1.1.283"
},
"devDependencies": {
"babel-jest": "21.2.0",
"babel-preset-react-native": "4.0.0",
"jest": "21.2.1",
"react-test-renderer": "16.0.0"
},
"jest": {
"preset": "react-native"
}
}
i really want to use react-native > 0.49 with react-native-navigation.. there's a module that requires react-native^0.49.
Issue Description
I have been struggling to start new react-native project with react-native 0.49 onwards, since they default to App.js not index.android.js or index.ios.js then giving me error "can not find entry file index.android.js" or even when i run in ios simulator gives "can not find entry file index.ios.js" but when i run project without linking and using react-native-navigation it works.
Steps to Reproduce / Code Snippets / Screenshots
Steps to Reproduce.
Started new react-native project with simply react-native init navigationtest

Default files and folders created are as follows..
added react-native-navigation with yarn add react-native-navigation@latest
followed integration steps outlined in here https://wix.github.io/react-native-navigation/#/
started react-native packager
tested to run on android simulator.. the following error (always exist from react-native^0.49 after adding react-native-navigation and link)
My Package.json file
i really want to use react-native > 0.49 with react-native-navigation.. there's a module that requires react-native^0.49.
Environment