Generate android version code accounting for arch and min sdk#1720
Merged
inclement merged 1 commit intokivy:masterfrom Feb 25, 2019
OptimusGREEN:master
Merged
Generate android version code accounting for arch and min sdk#1720inclement merged 1 commit intokivy:masterfrom OptimusGREEN:master
inclement merged 1 commit intokivy:masterfrom
OptimusGREEN:master
Conversation
Android version code is generated to account for the architecture it is built for as well as the minimum sdk
Contributor
|
@OptimusGREEN I just found that apk build for Will |
Contributor
Author
|
Hmmm, I wasn't aware that x86_64 was supported as Buildozer spec only offers the other 3 as arch options. |
Member
|
@OptimusGREEN Go ahead, updating the buildozer.spec would be welcome. Thanks! |
Contributor
Author
|
updated this to include x86_64 here #1733 and also spec here kivy/buildozer#839 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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