Skip to content

Commit

Permalink
bump version & fix versionCode (#694)
Browse files Browse the repository at this point in the history
  • Loading branch information
m2049r authored Oct 19, 2020
1 parent f1b786e commit 6632547
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "com.m2049r.xmrwallet"
minSdkVersion 21
targetSdkVersion 28
versionCode 502
versionName "1.15.2 'Dark Fork'"
versionCode 503
versionName "1.15.3 'Dark Fork'"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
externalNativeBuild {
cmake {
Expand Down Expand Up @@ -92,8 +92,7 @@ android {
variant.outputs.all {
output ->
def abiName = output.getFilter(com.android.build.OutputFile.ABI)
output.versionCodeOverride = abiCodes.get(abiName, 0) + 10 * variant.versionCode
//def flavor = output.getFilter(flavor)
output.versionCodeOverride = abiCodes.get(abiName, 0) + 10 * versionCode

if (abiName == null) abiName = "universal"
def v = "${variant.versionName}".replaceFirst(" '.*' ?", "")
Expand Down

0 comments on commit 6632547

Please sign in to comment.