App versions are being build as at 1.0.1

Please provide the following:

  1. SDK Version: 38
  2. Platforms(Android/iOS/web/all): iOS + Android

When I make a build on expo using expo build:ios --non-interactive --no-wait --no-publish it generates the version code as 1.0.1 on iOS and 370010001 on Android. It seems like these were the first versions I have ever published, perhaps 4 to 6 weeks ago. It’s only since using ‘–no-publish’ that the issue occurred, and I don’t want to remove it since I do not want an OTA update.

I am not sure where the bug is here… and if it’s perhaps undocumented behaviour of ‘–no-publish’.

My app.json is:

{
	"expo": {
		"privacy": "public",
		"platforms": [
			"ios",
			"android",
			"web"
		],
		"version": "1.1.13",
		"ios": {
			"buildNumber": "1.1.13",
		},
		"android": {
			"useNextNotificationsApi": true,
			"versionCode": 380010113,
		},
	}
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.