naming strategy for version name in pubspec.yaml for iOS #1685
Replies: 2 comments 1 reply
-
Hi @elemental21, what have you tried exactly, have you tried adding -staging to
|
Beta Was this translation helpful? Give feedback.
0 replies
-
On iOS and MacOS only digits and dot symbols are allowed to be used in version. We even had to mention it in |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, we are implementing a naming strategy where our staging builds get a -staging as part of the build number to differentiate from App Tester. Works fine for Android but on iOS it strips the “-staging” out so we can't tell which build is on the staging environment and which is on the production environment. Anyone know why or what we can do to differentiate the staging builds? We've done the even/odd thing before and I suppose we could do it but it's not ideal for our process.
version: 0.44.0-staging
so in android you’ll see 0.44.0-staging (899) but the iOS side says 0.44.0 (899)
Beta Was this translation helpful? Give feedback.
All reactions