You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Autoversion is a Gradle plugin which generates a version name and code based on the most recent git tag.
2
3
It's very similar to the `git describe` command:
3
4
- if the current commit is not a tag, the version name is `<recent-tag>.<commit-count-since-tag>-<current-commit-hash>`
4
5
- if the current commit is tagged, the version name is the name of the tag
5
6
The `code` is the number of commits on the current branch. It is intended to be used as an ever-increasing version code.
6
7
The `releaseCode` is the number of commits until the most recent tag. It is intended to be used as a development version code that is set to the value used by the production code.
0 commit comments