From 89cb47a728f14c8d33adad22457ebb2439d713bc Mon Sep 17 00:00:00 2001 From: Evan Bacon Date: Tue, 19 May 2020 11:09:36 -0700 Subject: [PATCH] Create README.md --- blank/README.md | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 blank/README.md diff --git a/blank/README.md b/blank/README.md new file mode 100644 index 0000000..2f6acbd --- /dev/null +++ b/blank/README.md @@ -0,0 +1,44 @@ +# My Universal React Project + +

+ + + Supports Expo iOS + + + + Supports Expo Android + + + + Supports Expo Web + +

+ +## 🚀 How to use + +- Install packages with `yarn` or `npm install`. + - If you have native iOS code run `npx pod-install` +- Run `expo start` to start the bundler. +- Open the project in a React runtime to try it: + - iOS: [Expo client iOS](https://itunes.apple.com/app/apple-store/id982107779) + - Android: [Expo client Android](https://play.google.com/store/apps/details?id=host.exp.exponent&referrer=blankexample) + - Web: Any web browser + +## Adding Native Code + +This project can be run from the Expo client, you may find that you want to add more native code later on. You can do this by ejecting the project and rebuilding it yourself. + +- Run `expo eject` to create the native projects. +- You can still run your project in the Expo client, you just won't be able to access any new native modules you add. + +## Publishing + +- Deploy the native app to the App store and Play store using [Expo deployment](https://docs.expo.io/distribution/app-stores/). +- Deploy the website using this guide: [Web deployment](https://docs.expo.io/distribution/publishing-websites/). + +## 📝 Notes + +- Learn more about [Universal React with Expo](https://docs.expo.io/). +- See what API and components are [available in the React runtimes](https://docs.expo.io/versions/latest/). +- Find out more about developing apps and websites: [Guides](https://docs.expo.io/guides/).