Skip to content

Commit

Permalink
Increase build version factor
Browse files Browse the repository at this point in the history
  • Loading branch information
appndigital committed Sep 23, 2022
1 parent 7bc8a22 commit cfc7f70
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vector/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,8 @@ android {

applicationVariants.all { variant ->
// assign different version code for each output
def baseVariantVersion = variant.versionCode * 10
// Tchap : Increase the factor from 10 to 100 due to Neo users integration
def baseVariantVersion = variant.versionCode * 100
variant.outputs.each { output ->
def baseAbiVersionCode = project.ext.abiVersionCodes.get(output.getFilter(OutputFile.ABI))
// Known limitation: it does not modify the value in the BuildConfig.java generated file
Expand Down

0 comments on commit cfc7f70

Please sign in to comment.