react-native-material-ui-demo-app
react-native-material-ui-demo-app copied to clipboard
Fails on iOS
Followed instructions in readme:
414 git clone https://github.com/xotahal/react-native-material-ui-demo-app.git
415 cd react-native-material-ui-demo-app/
416 yarn install
417 git submodule init
418 git submodule update
419 npm start
In another window:
react-native run-ios
Result:
Installing build/Build/Products/Debug-iphonesimulator/example.app
An error was encountered processing the command (domain=NSPOSIXErrorDomain, code=2):
Failed to install the requested application
An application bundle was not found at the provided path.
Provide a valid path to the desired application bundle.
Print: Entry, ":CFBundleIdentifier", Does Not Exist
Command failed: /usr/libexec/PlistBuddy -c Print:CFBundleIdentifier build/Build/Products/Debug-iphonesimulator/example.app/Info.plist
Print: Entry, ":CFBundleIdentifier", Does Not Exist
samething for me too
I was able to run on iOS, by upgrading everything to the latest version:
npm i -g npm-check-updates
npm-check-updates -u
npm install
react-native upgrade
Then I got "Unrecognized font family 'Roboto'", so I proceeded with this tutorial as recommended on react-native-material-ui's main README, which is basically:
- create assets/fonts directory and copy Roboto fonts inside it
- add the following on package.json:
"rnpm": { "assets": ["./assets/fonts"] }
- link
react-native link
- run
react-native run-ios
Still getting the error after following instructions given by @fvicente. . . Any help please. . .