ethereum-boilerplate / ethereum-react-native-boilerplate

The ultimate full-stack Ethereum React Native Dapp Boilerplate which gives you maximum flexibility and speed. Feel free to fork and contribute. Although this repo is called "Ethereum Boilerplate" it works with any EVM system! Happy BUIDL!👷‍♂️
MIT License
544 stars 286 forks source link

Unable to resolve module react-native from /path/index.js: react-native could not be found within the project. #48

Open mattjaf opened 2 years ago

mattjaf commented 2 years ago

image

One of my buddy's ran into this issue right out the box when trying to launch this with Ios.

Looks like its being triggered here:

/**
 * @format
 */
                  V
------>import {AppRegistry} from 'react-native';
import App from './App';
import { name as appName } from './app.json';
import './shim';

AppRegistry.registerComponent(appName, () => App);

Could this possibly be a dependency issue from the recent changes?