add option to skip automatic build increase
This commit is contained in:
parent
df4dbfa09b
commit
7d09e90a78
6 changed files with 22 additions and 9 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue