mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-10 20:37:52 +01:00
Allow setting versionCode in parameter (#276)
Allow easier debug versionCode change
This commit is contained in:
parent
b83efd90a8
commit
cb58145361
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ android {
|
|||
minSdkVersion 16
|
||||
targetSdkVersion 23
|
||||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||||
versionCode 6
|
||||
versionCode project.getProperties().get("versionCode")?.toInteger() ?: 6
|
||||
versionName "0.2.0"
|
||||
|
||||
buildConfigField "String", "COMMIT_COUNT", "\"${getCommitCount()}\""
|
||||
|
|
Loading…
Reference in a new issue