Generate android version code accounting for arch and min sdk #1720
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Android version code is generated to account for the architecture it is built for as well as the minimum sdk.
The new version format is arch-minsdk-app version
This will allow apps of the same version name built for different architectures be uploaded to the play store and will provide separation for overlap.
example:
app version: 1.0.5
min sdk: 21
old style version code would be 10005 for all architectures
new version codes would be:
x86: 62110005
arm7: 72110005
arm8: 82110005