You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/README.md
+25-13Lines changed: 25 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,26 +25,38 @@ In the output, you'll find options to open the app in a
25
25
26
26
You can start developing by editing the files inside the **app** directory. This project uses [file-based routing](https://docs.expo.dev/router/introduction).
27
27
28
-
## Get a fresh project
28
+
## Publish update
29
29
30
-
When you're ready, run:
30
+
### Prerequisites
31
31
32
-
```bash
33
-
npm run reset-project
34
32
```
33
+
# expo
34
+
npm install -g eas-cli
35
+
eas login
36
+
```
37
+
38
+
### Building
35
39
36
-
This command will move the starter code to the **app-example** directory and create a blank **app** directory where you can start developing.
40
+
Update the version in `app.json`
37
41
38
-
## Learn more
42
+
```
43
+
{
44
+
"expo": {
45
+
"version": "1.1.0",
46
+
}
47
+
}
48
+
```
39
49
40
-
To learn more about developing your project with Expo, look at the following resources:
50
+
```
51
+
eas build --platform android --profile production
52
+
```
41
53
42
-
-[Expo documentation](https://docs.expo.dev/): Learn fundamentals, or go into advanced topics with our [guides](https://docs.expo.dev/guides).
43
-
-[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.
54
+
You might need to configure project on your machine (use/download existing keystore)
44
55
45
-
## Join the community
56
+
Then submit the application
46
57
47
-
Join our community of developers creating universal apps.
58
+
```
59
+
eas submit --platform android
60
+
```
48
61
49
-
-[Expo on GitHub](https://github.com/expo/expo): View our open source platform and contribute.
50
-
-[Discord community](https://chat.expo.dev): Chat with Expo users and ask questions.
62
+
Then you can go to the google play console and publish the release.
0 commit comments