Skip to content

Commit

Permalink
fix: Increase version code for ABIs to match previous schema
Browse files Browse the repository at this point in the history
  • Loading branch information
astubenbord committed Dec 12, 2023
1 parent a4fb72f commit 029cc99
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@ android.applicationVariants.all { variant ->
def abiName = output.getFilter(OutputFile.ABI)
def abiVersionCode = project.ext.abiCodes.get(abiName)
if (abiVersionCode != null) {
output.versionCodeOverride = variant.versionCode * 10 + abiVersionCode
output.versionCodeOverride = abiVersionCode * 1000 + variant.versionCode
println(abiName + ": " + output.versionCodeOverride)
// output.versionCodeOverride = variant.versionCode * 10 + abiVersionCode
}
}
}

0 comments on commit 029cc99

Please sign in to comment.