Skip to content

Commit

Permalink
Remove factor 10
Browse files Browse the repository at this point in the history
  • Loading branch information
HarlJo committed Mar 28, 2024
1 parent 7685514 commit 778f0ea
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 @@ -107,7 +107,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 * 10 + abiVersionCode
output.versionCodeOverride = variant.versionCode + abiVersionCode
}
}
}

0 comments on commit 778f0ea

Please sign in to comment.