Skip to content

Commit

Permalink
build.gradle: Use different versionCode scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
iakdis authored Apr 20, 2023
1 parent 8fb23a2 commit bb669f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ android.applicationVariants.all { variant ->
variant.outputs.each { output ->
def abiVersionCode = project.ext.abiCodes.get(output.getFilter(OutputFile.ABI))
if (abiVersionCode != null) {
output.versionCodeOverride = variant.versionCode + abiVersionCode
output.versionCodeOverride = variant.versionCode * 10 + abiVersionCode
}
}
}

0 comments on commit bb669f9

Please sign in to comment.