add option to skip automatic build increase

This commit is contained in:
Gergely Hegedus 2023-10-11 10:41:57 +03:00
parent df4dbfa09b
commit 7d09e90a78
6 changed files with 22 additions and 9 deletions

View file

@ -72,7 +72,7 @@ def jscFlavor = 'org.webkit:android-jsc:+'
// custom properties
def applicationIdArgument = project.findProperty('applicationId')
def applicationVersionCodeArgument = project.findProperty('versionCode')?.toInteger()
def applicationVersionCodeArgument = project.findProperty('versionCode')?.isInteger() ? project.findProperty('versionCode')?.toInteger() : null
def useDebugSigningForReleaseBuild = project.findProperty('useDebugSigningForReleaseBuild')?.toBoolean() ?: false
android {