react-everywhere/re-start

iOS not running

anthonycmain opened this issue · 5 comments

I've just tried running a fresh installation from the README. The web version seems to run up fine, but the iOS version has AppRegistry issues

screen shot 2017-09-30 at 10 09 04

hggz commented

same :(

can you please share how your package.json looks like, that might help figure out the issue.

Sorry previous upload was wrong.

Here is mine, I made no further changes to it other than the Create Scripts

package.json.txt

@anthonycmain @hgonzalez94
Had the same issue. I started a project with the folder name EveryWhereTest. For some reason, it called the component in index.ios.js only "everywhere" so that it was complaining that EveryWhereTest wasn't registered.

Have a look in your index.ios.js and make sure that the three locations in your case say TDAppFramework.

export default class TDAppFramework extends Component {
    render() {
        return  <App/>;
    }
}
AppRegistry.registerComponent('TDAppFramework', () => TDAppFramework);

I suspect it has probably done it as something like tdapp instead.

This should be fixed with the latest template.

react-native init projectName --template re-start
cd projectName
node scripts/additionalDependencies.js