Simple starter for Expo/React Native projects with minimal configuration to start your project.
- 🚧 Work in progress...
- 🚧 Work in progress...
- Get the project:
Don't forget to replace your-project-name with your actual project name.
git clone [email protected]:guval-gh/expo-starter.git your-project-name
cd your-project-name- Update remote branch:
git remote set-url origin [email protected]:your-username/your-project-name.git
# To check if the config is ok
git remote -v- Change the project name in
package.jsonandapp.json:
package.json
{
"name": "your-project-name"
}app.json
{
"expo": {
"name": "Your Project Name",
"slug": "your-project-name",
// ...
"scheme": "your-project-name"
// ...
}
}- Install dependencies:
yarn install- Generate the native code:
npx expo prebuild --clean- Run projet:
yarn ios
yarn android