Skip to content

Commit

Permalink
update how per ABI versioncodes are generated
Browse files Browse the repository at this point in the history
  • Loading branch information
n8fr8 committed Jan 12, 2024
1 parent 91b398b commit 814522d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ android {
variant.outputs.each { output ->
def baseVersionCode = abiCodeMap.get(output.getFilter("ABI"))
if(baseVersionCode != null) {
output.versionCodeOverride = Integer.valueOf(variant.versionCode) + Integer.valueOf(baseVersionCode)
output.versionCodeOverride = Integer.valueOf(variant.versionCode + "00" + baseVersionCode)
}
}
}
Expand Down

0 comments on commit 814522d

Please sign in to comment.