Skip to content

Commit

Permalink
Change version number to 0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jsubloom committed Sep 15, 2023
1 parent f92e281 commit e93e9af
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions packages/mobile/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@ Note: if you change the file structure in [mobile], hot reloading might not work

## Submitting to app stores

Use the "Publish" workflow to publish to the app stores

### Google Play Store (Android)

### Apple App Store (iOS)
Expand All @@ -122,6 +124,8 @@ Much (but not all) of the app store information (such as the app's description)

You can update app store metadata via `yarn npx eas-cli metadata:push`. Maybe you could do `yarn npx eas-cli metadata:pull` first and see if there's any changes that were manually made that should be saved in store.config.json first though.

Note that every time you publish, the BUILD number needs to be increased. Note that the BUILD number is not the same as the VERSION number (the version number is what real users see in the app store)

## Other Topics

### iOS Internal Distribution
Expand Down
3 changes: 2 additions & 1 deletion packages/mobile/app.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const releaseChannel = process.env.RELEASE_CHANNEL?.toLowerCase();
export default {
name: getAppName(),
slug: "bloom-reader-lite-mobile", // Used in Expo URLs or the project name in Expo Go, I think. I don't think it needs to vary based on release channel.
version: "1.0.0",
version: "0.1.0",
owner: "bloombooks",
orientation: "portrait",
icon: "./assets/BloomIcon.png",
Expand All @@ -22,6 +22,7 @@ export default {
ios: {
supportsTablet: true,
bundleIdentifier: getPackageIdentifier(),
buildNumber: 1,
},
android: {
package: getPackageIdentifier(),
Expand Down

0 comments on commit e93e9af

Please sign in to comment.