Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 25 additions & 13 deletions examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,26 +25,38 @@ In the output, you'll find options to open the app in a

You can start developing by editing the files inside the **app** directory. This project uses [file-based routing](https://docs.expo.dev/router/introduction).

## Get a fresh project
## Publish update

When you're ready, run:
### Prerequisites

```bash
npm run reset-project
```
# expo
npm install -g eas-cli
eas login
```

### Building

This command will move the starter code to the **app-example** directory and create a blank **app** directory where you can start developing.
Update the version in `app.json`

## Learn more
```
{
"expo": {
"version": "1.1.0",
}
}
```

To learn more about developing your project with Expo, look at the following resources:
```
eas build --platform android --profile production
```

- [Expo documentation](https://docs.expo.dev/): Learn fundamentals, or go into advanced topics with our [guides](https://docs.expo.dev/guides).
- [Learn Expo tutorial](https://docs.expo.dev/tutorial/introduction/): Follow a step-by-step tutorial where you'll create a project that runs on Android, iOS, and the web.
You might need to configure project on your machine (use/download existing keystore)

## Join the community
Then submit the application

Join our community of developers creating universal apps.
```
eas submit --platform android
```

- [Expo on GitHub](https://github.com/expo/expo): View our open source platform and contribute.
- [Discord community](https://chat.expo.dev): Chat with Expo users and ask questions.
Then you can go to the google play console and publish the release.
13 changes: 10 additions & 3 deletions examples/app.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"expo": {
"name": "react-native-popup-menu-examples",
"slug": "react-native-popup-menu-examples",
"version": "1.0.0",
"name": "RNPopupMenuExamples",
"slug": "RNPopupMenuExamples",
"version": "1.1.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "reactnativepopupmenuexamples",
Expand All @@ -16,6 +16,7 @@
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "sk.instea.rnpopupmenuexamples",
"edgeToEdgeEnabled": true
},
"web": {
Expand All @@ -37,6 +38,12 @@
],
"experiments": {
"typedRoutes": true
},
"extra": {
"router": {},
"eas": {
"projectId": "bb486290-87aa-4799-84e2-fe1d0e93c74d"
}
}
}
}
21 changes: 21 additions & 0 deletions examples/eas.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"cli": {
"version": ">= 16.17.4",
"appVersionSource": "remote"
},
"build": {
"development": {
"developmentClient": true,
"distribution": "internal"
},
"preview": {
"distribution": "internal"
},
"production": {
"autoIncrement": true
}
},
"submit": {
"production": {}
}
}
1 change: 1 addition & 0 deletions examples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"expo": "expo",
"lint": "expo lint"
},
"dependencies": {
Expand Down