Skip to content

Commit

Permalink
increase version code
Browse files Browse the repository at this point in the history
  • Loading branch information
vchlum committed Dec 6, 2023
1 parent 9922062 commit 0d1b549
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Utils.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ext.getGitVersionCode = { ->
commandLine 'git', 'rev-list', '--count', 'HEAD'
standardOutput = stdout
}
return Integer.parseInt(stdout.toString().trim())
return (Integer.parseInt(stdout.toString().trim()) + 5)
}
catch (ignored) {
return -1;
Expand Down

0 comments on commit 0d1b549

Please sign in to comment.